lang icon indicating copy to clipboard operation
lang copied to clipboard

Module for enforcing language constraints in Python

Results 5 lang issues
Sort by recently updated
recently updated
newest added

Good work - I really liked this. When trying to install using 'pip install lang' in Python 2.7, I get the following error: Downloading/unpacking lang Downloading lang-1.0.5.tar.gz Running setup.py (path:/mnt/auto/content/virtualenv/try/build/lang/setup.py)...

The previous break-in in #3 was petty and small; you'd have to write the smelly code every time you wanted to pickpocket. This time, however, the break-in is orchestrated by...

bug
enhancement

An unscrupulous pickpocket can reach out and nab private members easily. Assume a module `box` with: ``` from lang.access import enforce_private @enforce_private class Box(object): def __init__(self): self._cheese_ = 42 ```...

bug
enhancement

``` >>> from lang.access import enforce_private >>> @enforce_private ... class Box(object): ... def __init__(self): ... self._cheese_ = 42 ... >>> Box() Traceback (most recent call last): File "", line 1,...

bug

Please add a decorator for overriding methods of base classes. This will be used to verify that the overriding function actually exists in the base class and to check that...

enhancement