[issue2897] include structmember.h in Python.h

2009-10-16 Thread Patrick Näf
Changes by Patrick Näf : -- nosy: +herzbube ___ Python tracker <http://bugs.python.org/issue2897> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6860] Inconsistent naming of custom command in setup.py help output

2009-09-17 Thread Patrick Näf
Patrick Näf added the comment: >To be able to do this fix, I also need to change the way commands are >registered in Distutils. Hm, I thought commands were registered in the setup() function with the cmdclass dict. Like this: setup( # "test" is the name that should be

[issue6860] Inconsistent naming of custom command in setup.py help output

2009-09-07 Thread Patrick Näf
New submission from Patrick Näf : The attached setup.py file defines a custom command named "test", which is implemented in a class named "TestClass". Try to run both of the following: 1) ./setup.py test -h 2) ./setup.py --help-commands In case 1, Distutils will use the cla