[issue1483] xml.sax.saxutils.prepare_input_source ignores character stream in InputSource

2007-11-22 Thread Yitz Gale
Yitz Gale added the comment: Oops, obvious typo, sorry: -if source.getByteStream() is None: +if source.getCharacterStream() is None and source.getByteStream() is None: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1483

[issue1597404] sqlite timestamp converter bug (floating point)

2007-11-22 Thread Gerhard Häring
Gerhard Häring added the comment: This has long been fixed in revision 53420. So it will be in Python 2.6 and 3.0. -- resolution: - fixed status: open - closed type: - behavior _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1597404

[issue1706863] Failed to build Python 2.5.1 with sqlite3

2007-11-22 Thread Gerhard Häring
Gerhard Häring added the comment: This is apparently a problem in setup.py. There seems to be a code path where an object should be a string, but is None instead. I'll have to review the relevant parts of setup.py. -- nosy: +ghaering type: - compile error

[issue1733085] sqlite3 module trigger problem

2007-11-22 Thread Gerhard Häring
Gerhard Häring added the comment: We'll make sure there's an updated SQLite DLL in Python 2.6 and Python 3.0. It's not worth the effort for 2.5.2. There's always the workaround of users installing an updated DLL themselves. -- resolution: - later status: open - closed

[issue1734164] sqlite3 causes memory read error

2007-11-22 Thread Gerhard Häring
Gerhard Häring added the comment: Ok, I'll modify the 2.5 maintenance line with this patch: http://initd.org/tracker/pysqlite/changeset/426 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1734164 _

[issue1402] Interpreter cleanup: order of _PyGILState_Fini and PyInterpreterState_Clear

2007-11-22 Thread Ronald Oussoren
Ronald Oussoren added the comment: The attached patch fixes the crash, but I haven't verified if the patch is actually correct. With this patch some PyThread API's are called after PyInterpreterState_Clear and I don't know if it is valid to do so. All unittests pass fine on OSX though.

[issue1358] Compile error on OS X 10.5

2007-11-22 Thread Simon Percivall
Simon Percivall added the comment: It has to do with the MACOSX_DEPLOYMENT_TARGET. If it's set to 10.4, the legacy version of setpgrp is used (with args), it it's 10.5, setpgrp expects no arguments. It seems configure won't detect the difference. -- nosy: +percivall

[issue1462525] URI parsing library

2007-11-22 Thread vincent kraeutler
vincent kraeutler added the comment: In the meantime, I have found a very nice parser combinator library for Python (pyparse) and have implemented a validating parser for RFC 3986 URI's by more or less simply converting the complete ABNF grammar found in the RFC. Obviously, this will never make

[issue1485] Idle tab command completion

2007-11-22 Thread Grant Delaney
New submission from Grant Delaney: Exception in Tkinter callback Traceback (most recent call last): File /usr/lib/python2.5/lib-tk/Tkinter.py, line 1403, in __call__ return self.func(*args) File /usr/lib/python2.5/idlelib/AutoCompleteWindow.py, line 217, in winconfig_event x, y, cx,

[issue1485] Idle tab command completion

2007-11-22 Thread Facundo Batista
Facundo Batista added the comment: This is not a bug report, just a copied traceback. For a useful bug, put what you did so we can reproduce it, what you get, and what you think you should got. Thanks! -- nosy: +facundobatista resolution: - rejected status: open - closed

[issue1486] Idle tab command completion

2007-11-22 Thread Grant Delaney
New submission from Grant Delaney: Running idle from a terminal window in desktop. Python 2.5.1 (r251:54863, Nov 22 2007, 13:55:16) [GCC 4.1.2] on linux2 Type copyright, credits or license() for more information.

[issue1486] Idle tab command completion

2007-11-22 Thread Facundo Batista
Facundo Batista added the comment: On IDLE and Python with the same exact version, but in Windows, this works ok. Don't have IDLE in Linux to try it, though. -- nosy: +facundobatista __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1486

[issue1487] PEP 366 implementation

2007-11-22 Thread Nick Coghlan
New submission from Nick Coghlan: Patch to implement PEP 366. Note that it doesn't implement precisely the semantics described in the version of the PEP posted in July, as some of those ideas didn't prove feasible due to the fact that imp.new_module can't tell the difference between normal

[issue1488] PCBuild9 _ssl.vcproj improperly launches build

2007-11-22 Thread Christian Heimes
Christian Heimes added the comment: Thanks, I'll check it later. -- assignee: - tiran keywords: +patch, py3k priority: - normal versions: +Python 2.6 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1488 __

[issue1488] PCBuild9 _ssl.vcproj improperly launches build

2007-11-22 Thread Joseph Armbruster
New submission from Joseph Armbruster: When you attempt to build the _ssl project in release or debug you can possibly encounter errors in the following scenarios: 1) having spaces in the build path 2) if you launch the build in debug, it attempts to run build_ssl.py with the python.exe found

[issue1631171] implement warnings module in C

2007-11-22 Thread Brett Cannon
Brett Cannon added the comment: Implementing warn_explicit() is going to be troublesome with the new module_globals argument. It requires not only to go through the hassle of looking for a loader and calling get_source(), but it will most likely require reworking the traceback function

[issue1486] Idle tab command completion

2007-11-22 Thread Quentin Gallet-Gilles
Quentin Gallet-Gilles added the comment: Couldn't reproduce it either, with the following IDLE config: 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 IDLE 1.2.1 No Subprocess -- nosy:

[issue1489] test_socket_ssl hanhs on Windows (deadlock)

2007-11-22 Thread Paul Moore
New submission from Paul Moore: When running the test suite on Windows, test_socket_ssl hangs. After a bit of investigation, it appears that the test is hanging at line 184 (if self.s.stdout.readline() != ERROR\n:) in OpenSSLServer._external. The problem is that the test assumes it can read a

[issue1490] Bug in eval() function

2007-11-22 Thread Arunkumar
New submission from Arunkumar: PythonWin 2.5 (r25:51908, Sep 19 2006, 09:52:17) [MSC v.1310 32 bit (Intel)] on win32. Portions Copyright 1994-2006 Mark Hammond - see 'Help/About PythonWin' for further copyright information. eval(02*2) 4 eval(08*2) Traceback (most recent call last):

[issue1488] PCBuild9 _ssl.vcproj improperly launches build

2007-11-22 Thread Christian Heimes
Christian Heimes added the comment: I've fixed (1) and (2) in r59130. I don't understand what you mean with (3). -- resolution: - fixed status: open - pending __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1488