[issue1693] Please check merge from trunk

2007-12-24 Thread Christian Heimes
New submission from Christian Heimes: Can you please check the merge of typeobject.c from trunk in r59595? I'm not absolutely sure if it has the desired effect. slot_tp_hash() was heavily modified in py3k. -- assignee: gvanrossum components: Interpreter Core keywords: py3k messages:

[issue1657] [patch] epoll and kqueue wrappers for the select module

2007-12-24 Thread Thomas Herve
Thomas Herve added the comment: You have to use sys.platform to get 'darwin', not os.name. The rest of the test seems good. I didn't spot the check of EEXIST in pyepoll_internal_ctl, I'm not sure it's a good idea. I understand it's for being able to only use register, but it's not the way it's

[issue1694] floating point number round failures under Linux

2007-12-24 Thread Bernhard Mayr
New submission from Bernhard Mayr: [EMAIL PROTECTED] ~]$ python Python 2.5.1 (r251:54863, Oct 30 2007, 13:54:11) [GCC 4.1.2 20070925 (Red Hat 4.1.2-33)] on linux2 Type help, copyright, credits or license for more information. f1=0.55 f2=2.25 print '%.1f, %.1f' % (f1, f2) 0.6, 2.2 f1 is

[issue1689] Backport PEP 3141 to 2.6

2007-12-24 Thread Facundo Batista
Facundo Batista added the comment: The patch applies cleanly, all test cases are ok. To be commited, documentation should be created for this, would you please take care of it? Also, some lines for NEWS will be welcomed. Thank you!! -- nosy: +facundobatista

[issue1695] time.localtime() docstring has a wrong fieldname

2007-12-24 Thread tapybugs
New submission from tapybugs: The docstring says tm_day but dir() knows tm_mday only: Python 2.5.1 (r251:54863, Oct 5 2007, 13:36:32) [GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2 Type help, copyright, credits or license for more information. import time print

[issue1695] time.localtime() docstring has a wrong fieldname

2007-12-24 Thread Brett Cannon
Changes by Brett Cannon: -- assignee: - brett.cannon nosy: +brett.cannon __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1695 __ ___ Python-bugs-list mailing list

[issue1695] time.localtime() docstring has a wrong fieldname

2007-12-24 Thread Brett Cannon
Brett Cannon added the comment: Fixed in r59596 and r59597. -- resolution: - fixed status: open - closed versions: +Python 2.6 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1695 __

[issue1674] pythonw.exe crashes when run in one particular account on Windows XP Pro

2007-12-24 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: Thanks for the report. Please reopen it if you come up with further confimation. -- assignee: - kbk nosy: +kbk resolution: - works for me status: open - closed __ Tracker [EMAIL PROTECTED]

[issue1696] Distutils ignore dry-run flag at clean-up of distutils.command.build_scripts.copy_scripts

2007-12-24 Thread toxik
New submission from toxik: It's actually py251. 113 else: 114 f.close() 115 self.copy_file(script, outfile) Earlier, f is set to None if file is not found, and we are in dry-run mode. Simple solution: 113 elif f: 114