[issue935117] pkgutil doesn't understand case-senseless filesystems

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Fred, do you still want to fix the bug? -- nosy: +tiran type: -> rfe versions: +Python 2.5, Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]> _

[issue886488] WinPython 2.3.3 crashes using popen2 to spawn lots of child

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Modules/posixmodule.c:_PyPopen() needs to check for NULL after the _fdopen() calls. -- nosy: +tiran priority: normal -> high versions: +Python 2.5, Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]>

[issue763708] Failures in test_macostools for --enable-unicode=ucs4

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Happy New Year Jack! How are you :) *scnr* -- nosy: +tiran versions: +Python 2.5, Python 2.6 -Python 2.3 Tracker <[EMAIL PROTECTED]> __

[issue1731] Random errors on interpreter shutdown

2008-01-03 Thread Thomas Dybdahl Ahle
Thomas Dybdahl Ahle added the comment: I run this now in the beginning of my code. As far as I can see it works fine. if not hasattr(Thread, "_Thread__bootstrap_inner"): class SafeThread (Thread): def encaps(self): try: self._Thread__bootstrap_inner()

[issue1005895] curses for win32

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Windows versions: +Python 2.6 -Python 2.3 _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bug

[issue1548687] C modules reloaded on certain failed imports

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.5 -Python 2.3 _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list

[issue1433886] pointer aliasing causes core dump, with workaround

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: Should we fix the general issue in Python 3.0 now that Python 3.0 is fast apace? CAN we fix it? -- nosy: +tiran versions: +Python 3.0 -Python 2.3 _ Tracker <[EMAIL PROTECTED]> _

[issue1732] Doc build fails with a KeyError

2008-01-03 Thread Raymond Hettinger
New submission from Raymond Hettinger: . . . Traceback (most recent call last): File "tools/sphinx-build.py", line 24, in sys.exit(main(sys.argv)) File "/home/rhettinger/py26/Doc/tools/sphinx/__init__.py", line 141, in main builderobj.build_update() File "/home/rhettinger/py26/Doc/

[issue1732] Doc build fails with a KeyError

2008-01-03 Thread Christian Heimes
Christian Heimes added the comment: You have to update the tools with make update. I had some issues with the update so I removed the tools directory followed by svn up and make update. -- nosy: +tiran resolution: -> invalid status: open -> closed __ Tr

[issue1640] Enhancements for mathmodule

2008-01-03 Thread Tim Peters
Tim Peters added the comment: The functionality of what was called (and I agree confusingly so) "sign()" here is supplied by "signbit()" in C99. That standard isn't free, but the relevant part is incorporated in the free Open Group standards: http://www.opengroup.org/onlinepubs/95399/functi

[issue789290] Minor FP bug in object.c

2008-01-03 Thread Tim Peters
Tim Peters added the comment: Unassigned myself -- I don't care about this 4 years later either ;-) -- assignee: tim_one -> nobody nosy: +nobody Tracker <[EMAIL PROTECTED]> ___

[issue953599] asyncore misses socket closes when poll is used

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.6 Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list mailing list Unsubscribe: h

[issue1598083] Top-level exception handler writes to stdout unsafely

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.6 _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list Unsubscribe:

[issue1698] urlparse and usernames containing @

2008-01-03 Thread Senthil
Senthil added the comment: Hi Guido, I have added the unit tests, tested it on my system and created a new patch combining the previous one against the trunk. You can verify and check in this. Thank you, Senthil Added file: http://bugs.python.org/file9054/issue1698-withtests.patch ___

[issue1572210] help(x) for keywords too

2008-01-03 Thread Joseph Armbruster
Joseph Armbruster added the comment: This issue should probably be closed. Performing the decompile on the command line as directed by the interpreter is as trivial as firing up the interpreter itself. It would make more sense to add an option to the installer that would automagically perform th

[issue932563] logging: need a way to discard Logger objects

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.6 Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list mailing list Unsubscribe: h

[issue1193610] Expat Parser to supply document locator in incremental parse

2008-01-03 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.5, Python 2.6 _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list

[issue1733] Maybe PC/VS7.1/pythoncore.vcproj is missing Modules/md5module.c

2008-01-03 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto: I addressed this in issue1727, but I thought it could be better to create new tracker item. Probably attached patch is needed. Thank you. -- components: Build files: md5module.patch messages: 59215 nosy: ocean-city severity: normal status: open tit

[issue1734] no effect if metaclass modifies dict

2008-01-03 Thread L. Peter Deutsch
New submission from L. Peter Deutsch: In the following, dir(Node) should include the name 'z', and Node.z should be 'Node'. However, dir(Node) does not include 'z', and Node.z is undefined (AttributeError). This is directly contrary to the Python documentation, which says "metaclasses can modify

[issue1481296] long(float('nan'))!=0L

2008-01-03 Thread Ronald Oussoren
Ronald Oussoren added the comment: The change in the trunk seems like a good backport candidate, it fixes an issue with float conversion on OSX compared to other platforms. That said, I don't like the patch. This makes the current behaviour of converting float NaN's to 0 the defined behaviour,

<    1   2