Ticket #5 (closed defect: fixed)
no mangling of double underscore names in class
| Reported by: | robertwb | Owned by: | scoder |
|---|---|---|---|
| Priority: | major | Milestone: | 0.16 |
| Component: | Python Semantics | Keywords: | |
| Cc: |
Description (last modified by scoder) (diff)
When defining a class attribute that starts with double underscores, CPython mangles the name from __bla to _classname_bla, but Cython produced classes don't.
Minimal example:
test.pyx and good.py are the same, like so:
class Test(object):
__bla = 1
alon@alfajor:~/src/bugs/cython/doubleunderscore$ python
Python 2.5.2 (r252:60911, Feb 26 2008, 15:04:22)
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu1)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import test
>>> test.Test
<class 'test.Test'>
>>> test.Test.__bla
1
>>>
alon@alfajor:~/src/bugs/cython/doubleunderscore$
alon@alfajor:~/src/bugs/cython/doubleunderscore$ ls
build setup.py test.c test.pyx test.so
alon@alfajor:~/src/bugs/cython/doubleunderscore$ cp test.pyx good.py
alon@alfajor:~/src/bugs/cython/doubleunderscore$ python
Python 2.5.2 (r252:60911, Feb 26 2008, 15:04:22)
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu1)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import good
>>> good.Test
<class 'good.Test'>
>>> good.Test.__bla
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: type object 'Test' has no attribute '__bla'
>>> good.Test._Test__bla
1
>>>
Change History
Note: See
TracTickets for help on using
tickets.
