[issue5513] What's New should say VERY CLEARLY that the type file is gone

2009-03-20 Thread David W. Lambert
David W. Lambert lamber...@corning.com added the comment: My file class extends text files with seek or read through condition or pattern, providing an awk like pattern{action} task separation. If I allow a pre-existing stream into my constructor (subprocess.Popen my favorite) I still suffer

[issue5507] ctypes configuration fails on mips-linux (and probably Irix)

2009-03-20 Thread Roumen Petrov
Roumen Petrov bugtr...@roumenpetrov.info added the comment: please find already open issue and close this one. -- nosy: +rpetrov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5507 ___

[issue4625] IDLE won't open anymore, .idlerc unaccessible

2009-03-20 Thread Timothy Zhang
Timothy Zhang z...@live.cn added the comment: I meet the same problem and have it fixed. I use Python 2.5.2 on Windows XP. This is my solution: 1. Choose Tool-Folder Option in your explorer menu, then click View tab, uncheck use simple file sharing(recommended). 2. Right click on C:\Documents

[issue5524] execfile() removed from Python3

2009-03-20 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: martin There is a much simpler solution to the problem: martin use exec(open(fn,rb).read()) Ok... but there is the newline issue: (self quote) exec() doesn't support newline different than \n, see issue #4628. And open_python()

[issue5526] Local variables unavailable for operation of list comprehension when using eval()

2009-03-20 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: This is a fundamental limitation of how comprehensions are implemented in Python 3 and is unlikely to change anytime soon. -- nosy: +benjamin.peterson resolution: - wont fix status: open - closed

[issue1322] platform.dist() has unpredictable result under Linux

2009-03-20 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: On 2009-03-18 18:13, Matthias Klose wrote: Matthias Klose d...@debian.org added the comment: MAL, please can we add zooko's patch in some form? The current implementation assumes an implementation, which doesn't exist on all platforms,

[issue5033] setup.py crashes if sqlite version contains 'beta'

2009-03-20 Thread Gerhard Häring
Changes by Gerhard Häring g...@ghaering.de: -- assignee: - ghaering nosy: +ghaering priority: - low ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5033 ___

[issue1322] platform.dist() has unpredictable result under Linux

2009-03-20 Thread Zooko O'Whielacronx
Zooko O'Whielacronx zo...@zooko.com added the comment: I just read back through this ticket, but I didn't understand exactly what MAL wanted to have different from what this Python function currently does:

[issue5518] cPickle produces inconsistent output

2009-03-20 Thread rb
rb rb-os...@justgohome.co.uk added the comment: Martin, Sorry, I don't follow. I realise that the refcounts will be different; but pickling an object should surely be independent of the refcount as there is no need to include the refcount in the output? What other way (using pickle or not) can

[issue1726687] Bug found in datetime for Epoch time = -1

2009-03-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Is the break intended in the test function? it seems that this will skip the whole test. Isn't continue better? -- ___ Python tracker rep...@bugs.python.org

[issue1726687] Bug found in datetime for Epoch time = -1

2009-03-20 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: @Amaury: You wrote: But negative time_t are still not allowed by the Microsoft CRT, the tests fail. So I choosed to skip mktime(-1) test if mktime(-2) fails. I don't have Windows to test my patch nor current behaviour.

[issue4258] Use 30-bit digits instead of 15-bit digits for Python integers.

2009-03-20 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Backported to trunk in r70479. Mario, thanks for the long multiplication tweaks you submitted: could you possibly regenerate your Feb 19th patch against the trunk (or py3k, whichever you prefer) and attach it to issue 3944? --

[issue5518] cPickle produces inconsistent output

2009-03-20 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: pickle is designed to provide persistent storage, not create keys for objects. Changes to the format are fine as long as they are compatible. -- nosy: +benjamin.peterson status: pending - closed

[issue5527] multiprocessing won't work with Tkinter (under Linux)

2009-03-20 Thread Aki
New submission from Aki akin...@users.sourceforge.net: Hello, The attached test case, which uses multiprocessing module to run Tkinter GUI process, runs flawlessly under Solaris but hung under Linux (CentOS5). The test case is a trimmed version of much larger program but it still exhibits the

[issue5463] Remove deprecated features from struct module

2009-03-20 Thread Andreas Schawo
Andreas Schawo andreas.sch...@gmail.com added the comment: Ok, heres the patch again. Passed regression tests. Should the version number increase to 0.3? Maybe to reflect there are no more deprecated features. It should then take place after FLOAT_COERCE cleanup. I'm currently trying to

[issue1666318] shutil.copytree doesn't preserve directory permissions

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +ajaksu2 stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1666318

[issue1145257] shutil.copystat() may fail...

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +shutil.copytree doesn't preserve directory permissions stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 -Python 2.4 ___ Python tracker rep...@bugs.python.org

[issue1119626] patches to compile for AIX 4.1.x

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Unless someone tells me that providing 'stubs for openpty in posixmodule and wgetnstr in curses module' is still a valid concern, I'll close this. -- components: +Build nosy: +ajaksu2 priority: normal - low stage: - test needed status:

[issue1157169] csv Sniffer returns bad dialect?

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1157169 ___

[issue1431091] CSV Sniffer fails to report mismatch of column counts

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1431091 ___

[issue1158490] locale fails if LANGUAGE has multiple locales

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1158490 ___

[issue1223976] error locale.getlocale() with LANGUAGE=eu_ES

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1223976 ___

[issue1262856] fcntl.ioctl have a bit problem.

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1262856 ___

[issue1276509] 2.4.1 make fails on Solaris 10 (complexobject.c/HUGE_VAL)

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Will close as won't fix if nobody object. From pymath.h: /* HUGE_VAL is supposed to expand to a positive double infinity. Python * uses Py_HUGE_VAL instead because some platforms are broken in this * respect. We used to embed code in

[issue1243730] Big speedup in email message parsing

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Library (Lib) -Interpreter Core nosy: +ajaksu2 stage: - test needed type: - performance versions: +Python 2.7, Python 3.1 -Python 2.5 ___ Python tracker rep...@bugs.python.org

[issue1234328] 'insufficient disk space' message wrong (msi on win xp pro)

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Will close as won't fix/lack of response unless someone wants this open. -- nosy: +ajaksu2 priority: normal - low status: open - pending type: - behavior ___ Python tracker rep...@bugs.python.org

[issue1040026] os.times() is bogus

2009-03-20 Thread Giampaolo Rodola'
Giampaolo Rodola' billiej...@users.sourceforge.net added the comment: Is this fixed in Python 2.6.1? We have encountered some problems on both OS X and FreeBSD by using 2.6.1: http://code.google.com/p/psutil/issues/detail?id=40 -- nosy: +giampaolo.rodola

[issue1298835] vendor-packages directory.

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Should be considered for 3.1 and 2.7. -- nosy: +ajaksu2 type: - feature request versions: +Python 2.7, Python 3.1 -Python 2.4 ___ Python tracker rep...@bugs.python.org

[issue1296434] Call by object reference sometimes call by value

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Will close this unless someone offers better wording for the docs and it doesn't involve a flamewar. -- nosy: +ajaksu2 priority: normal - low status: open - pending type: - feature request versions: +Python 2.6 -Python 2.4

[issue1294232] Error in metaclass search order

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- priority: normal - low stage: - test needed type: - feature request versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1294232

[issue1291169] mmap with unsigned int offset and cross build for ppc

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: This is 'open' and 'out of date'... There's been some recent mmap activity, so I'll leave closing this to someone that understands mmap :) -- nosy: +ajaksu2 versions: +Python 2.6 -Python 2.5 ___

[issue1284496] traceback module can return undecodable byte strings

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Unicode -None priority: normal - low stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1284496

[issue1283289] PyArg_ParseTupleAndKeywords gives misleading error message

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Fixed on trunk and py3k, can someone test on the release branches? Python 2.7a0 (trunk, Feb 24 2009, 10:30:17) re.compile(a).match(pos=10) Traceback (most recent call last): File stdin, line 1, in module TypeError: Required argument 'pattern'

[issue1295179] termios.c in qnx4.25

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- priority: normal - low stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1295179 ___

[issue5528] Unable to launch IDLE on Windows

2009-03-20 Thread Chris
New submission from Chris chrisa...@yahoo.com: I have recently installed python 2.6 and I have been successfully able to run python from a command line and from the Python command line. However, when I try to launch the IDLE, all I get is a window that flashes. I tried launching the IDLE

[issue1303673] traceback on trying to load a hotshot stats file

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Extension Modules -Library (Lib) dependencies: +hotshot.stats.load fails with AssertionError stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker

[issue1314572] Trailing slash redirection for SimpleHTTPServer

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Has patch. -- keywords: +easy nosy: +ajaksu2 stage: - test needed versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1314572

[issue1306484] compile() converts filename parameter to StringType

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Confirmed on trunk. -- nosy: +ajaksu2 stage: - needs patch type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1306484

[issue1306253] Python 2.4.2c1 fails to build on 64-bit Solaris 10

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- priority: normal - low type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1306253 ___

[issue1332869] Fatal Python error: Interpreter not initialized

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed title: Fatal Python error: Interpreter not initialized - Fatal Python error: Interpreter not initialized type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker

[issue1332732] Incorrect use of -L/usr/lib/termcap

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: I'll close this unless someone confirms the warning is still present in supported versions. -- nosy: +ajaksu2 status: open - pending ___ Python tracker rep...@bugs.python.org

[issue1326448] set.__getstate__ is not overriden

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Confirmed, but it's still not clear whether it should change. -- components: +Library (Lib) -None nosy: +ajaksu2 type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker

[issue1327594] Static Windows Build fails to locate existing installation

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- priority: normal - low stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1327594 ___

[issue1326077] traceback.py formats SyntaxError differently

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Confirmed on trunk. -- nosy: +ajaksu2 stage: - needs patch type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1326077

[issue1324770] Adding redblack tree to collections module

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - feature request versions: +Python 2.7, Python 3.1 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1324770

[issue1252001] Issue with telnetlib read_until not timing out

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +Issue with telnetlib read_until not timing out ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1252001 ___

[issue1252001] Issue with telnetlib read_until not timing out

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +telnetlib expect() and read_until() do not time out properly -Issue with telnetlib read_until not timing out ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1252001

[issue1360221] telnetlib expect() and read_until() do not time out properly

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- keywords: +patch stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1360221 ___

[issue1356969] Tix.py class HList missing info_bbox

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- keywords: +patch nosy: +ajaksu2 stage: - test needed versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1356969 ___

[issue1351020] PythonD DJGPP-specific patch set for porting to DOS.

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Any news on this? -- nosy: +ajaksu2 priority: normal - low status: open - pending type: - feature request ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1351020

[issue1349106] email.Generators does not separates headers with \r\n

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- keywords: +easy stage: - test needed versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1349106 ___

[issue1337876] Inconsistent use of buffer interface in string and unicode

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Unicode stage: - test needed type: - feature request versions: +Python 2.7, Python 3.1 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1337876

[issue4024] float(0.0) singleton

2009-03-20 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I have 3 comments for future readers who might want to reopen. 1) This would have little effect on calculation with numpy. 2) According to sys.getrefcount, when '' appears, 3.0.1 has 1200 duplicate references to 0 and 1 alone, and about 2000

[issue5524] execfile() removed from Python3

2009-03-20 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Ok... but there is the newline issue: (self quote) exec() doesn't support newline different than \n, see issue #4628. So that issue should get fixed, then. And open_python() can be used for other usages than execfile() ;-) Note:

[issue1351020] PythonD DJGPP-specific patch set for porting to DOS.

2009-03-20 Thread Ben Decker
Ben Decker bd...@users.sourceforge.net added the comment: Our next target will probably be somewhere with Python 3 -- components: +Interpreter Core -None versions: +Python 3.1 -Python 2.4 ___ Python tracker rep...@bugs.python.org

[issue1388872] Polymorphic getters / setters

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Confirmed on trunk and py3k, not sure it's a bug. -- nosy: +ajaksu2 priority: normal - low versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org

[issue1386675] _winreg specifies EnvironmentError instead of WindowsError

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Windows stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1386675

[issue1379984] HP-UX: Can't shl_load() a library containing Thread Local

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- priority: normal - low stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1379984 ___

[issue1379804] HP-UX thread stack size needs to be increased

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- priority: normal - low stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1379804 ___

[issue1379416] email.Header encode() unicode P2.3xP2.4

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Library (Lib) -None stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1379416

[issue1372770] email.Header should preserve original FWS

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- nosy: +ajaksu2 stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1372770

[issue1368091] shutils cannot copy owner

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Closing as issue 1355826 has more details. -- nosy: +ajaksu2 resolution: - duplicate status: open - closed superseder: - shutil.move() does not preserve ownership ___ Python tracker

[issue1367628] use PyOS_ReadlineFunctionPointer in non-interractive input

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: The snippet from Parser/myreadline.c is still present in trunk. -- nosy: +ajaksu2 stage: - test needed title: use PyOS_ReadlineFunctionPointer in non-interractive input - use PyOS_ReadlineFunctionPointer in non-interractive input type:

[issue1360243] Add XML-RPC Fault Interoperability to XMLRPC libraries

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - feature request versions: +Python 2.7, Python 3.1 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1360243

[issue5518] cPickle produces inconsistent output

2009-03-20 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Sorry, I don't follow. I realise that the refcounts will be different; but pickling an object should surely be independent of the refcount as there is no need to include the refcount in the output? There certainly is a need to consider

[issue1326448] set.__getstate__ is not overriden

2009-03-20 Thread Raymond Hettinger
Changes by Raymond Hettinger rhettin...@users.sourceforge.net: -- assignee: tim_one - rhettinger ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1326448 ___

[issue1410680] Add 'surgical editing' to ConfigParser

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Anyone interested in updating this? -- nosy: +ajaksu2 stage: - patch review type: - feature request versions: +Python 2.7, Python 3.1 -Python 2.5 ___ Python tracker rep...@bugs.python.org

[issue1409460] email.Utils.parseaddr() gives arcane result

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Fixed in trunk, so issue 1464708 was probably forward ported. -- dependencies: +fixed handling of nested comments in mail addresses nosy: +ajaksu2 resolution: - out of date status: open - closed ___

[issue1398781] Example in section 5.3 Pure Embedding doesn't work.

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- assignee: - georg.brandl components: +Documentation nosy: +georg.brandl stage: - test needed type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org

[issue1040026] os.times() is bogus

2009-03-20 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: Is this fixed in Python 2.6.1? Please try to answer this question yourself in the future. Python 2.6.1 was released on Dec 4th (http://www.python.org/download/releases/2.6.1/), and the commits were made on Dec 29 (as seen both in the time

[issue1396946] %ehrntDRT support for time.strptime

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - patch review title: %ehrntDRT support for time.strptime - %ehrntDRT support for time.strptime versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org

[issue1396258] KeyboardInterrupt prevents return to Windows console

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- components: +Windows stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1396258

[issue1395552] add support for thread function result storage

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- priority: normal - low stage: - patch review type: - feature request versions: +Python 2.7, Python 3.1 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1395552

[issue1394135] Deleting first item causes anydbm.first() to fail

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Cannot reproduce with dbhash on trunk (Linux). -- nosy: +ajaksu2 stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org

[issue1324770] Adding redblack tree to collections module

2009-03-20 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: I'm curious what the use case is for this. It is not the purpose of the collections module to implement all possible storage techniques (b-trees, pairing heaps and whatnot). What problem is being solved? AFAICT, this offers

[issue1386675] _winreg specifies EnvironmentError instead of WindowsError

2009-03-20 Thread Mark Hammond
Mark Hammond mhamm...@users.sourceforge.net added the comment: oops - this slipped off my radar. I agree with *both* Frederic and Tony :) The module promises to raise an EnvironmentError, which is does. However, the main killer from my POV is that a 'winerror' attribute is likely to be of

[issue1434090] DOM tree inconsistency in expat XML parser

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- keywords: +easy, patch stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1434090

[issue1432343] Description of file-object read() method is wrong.

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- type: - behavior versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1432343 ___ ___

[issue1425127] os.remove OSError: [Errno 13] Permission denied

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Needs confirmation with recent versions, has nice tests. -- components: +Windows -None nosy: +ajaksu2 stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 ___ Python tracker

[issue1422094] email.MIME*.as_string removes duplicate spaces

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Confirmed on trunk. -- nosy: +ajaksu2 stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1422094

[issue1413379] Popened file object close hangs in latest Cygwin update

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Needs confirmation for recent versions. -- nosy: +ajaksu2 stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org

[issue1412448] Compile under mingw properly

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Will close unless someone can salvage this patch for supported versions, addressing Martin's review. -- nosy: +ajaksu2 priority: normal - low stage: - patch review status: open - pending type: - feature request

[issue1436206] CGIHTTPServer doesn't handle path names with embeded space

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: See issue 1535504 for patch. -- dependencies: +CGIHTTPServer doesn't handle path names with embeded space nosy: +ajaksu2 stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___

[issue1535504] CGIHTTPServer doesn't handle path names with embeded space

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Issue 1681674 was closed as won't fix, so IIUC this patch won't work. -- dependencies: +subprocess.Popen fails with socket._fileobject on Windows nosy: +ajaksu2 stage: - test needed type: - behavior versions: +Python 2.6

[issue1439312] Patch for bug 1438185: os.renames deletes junction points

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 3.0 -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1439312 ___

[issue1438480] shutil.move raises OSError when copystat fails

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- keywords: +patch stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1438480

[issue1438185] os.renames() crashes NTFS junctions

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Issue 1439312 has a patch. -- dependencies: +os.renames() crashes NTFS junctions nosy: +ajaksu2 stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 -Python 2.4 ___ Python tracker

[issue1437051] continue in .pdbrc has no effect

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1437051 ___

[issue1436346] yday in datetime module

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1436346 ___

[issue1326448] set.__getstate__ is not overriden

2009-03-20 Thread Raymond Hettinger
Raymond Hettinger rhettin...@users.sourceforge.net added the comment: Am going to close this one. Subclassers have the option of overriding __reduce__ to control pickling. My reading of the docs shows no guarantees that builtin types won't use __reduce__. Since this has been out for a good

[issue1445781] install fails on hard link

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- priority: normal - low stage: - test needed type: - behavior versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1445781

[issue1443875] email/charset.py convert() patch

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - patch review type: - feature request versions: +Python 2.7, Python 3.1 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1443875

[issue1443866] email 3.0+ stops parsing headers prematurely

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1443866 ___

[issue1442493] IDLE shell window gets very slow when displaying long lines

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- dependencies: +Squeezer - squeeze large output in the interpreter stage: - test needed type: - performance versions: +Python 2.6, Python 3.0 -Python 2.4 ___ Python tracker rep...@bugs.python.org

[issue1441984] Multiple simultaneous sendtos on AF_UNIX socket broken.

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1441984 ___

[issue1457119] Unifying pickle and cPickle exception class hierarchies

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: Almost fooled me, still as described on trunk: help(cPickle.UnpickleableError) Help on class UnpickleableError in module cPickle: class UnpickleableError(PicklingError) [...] help(pickle.PicklingError) Help on class PicklingError in module

[issue1449496] Python should use 3GB Address Space on Windows

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- stage: - test needed versions: +Python 2.7, Python 3.1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1449496 ___

[issue1448060] gettext.py breaks on plural-forms header (PATCH)

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- keywords: +patch stage: - test needed type: - behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1448060

[issue1446619] extended slice behavior inconsistent with docs

2009-03-20 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- assignee: - georg.brandl components: +Documentation -None nosy: +georg.brandl stage: - test needed type: - behavior versions: +Python 2.6, Python 3.0 -Python 2.4 ___ Python tracker

[issue1447945] Unable to stringify datetime with tzinfo

2009-03-20 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: So, won't fix? :) -- nosy: +ajaksu2 priority: normal - low stage: - test needed status: open - pending type: - behavior versions: +3rd party -Python 2.4 ___ Python tracker rep...@bugs.python.org

  1   2   >