[issue1581906] test_sqlite fails on OS X if test_ctypes is run

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Tests, ctypes stage: -> test needed type: -> behavior ___ Python tracker ___ ___ Python-

[issue1581182] Definition of a "character" is wrong

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Anyone brave enough can find the mentioned definitions in the thread below. Reading all of it is necessary, as there are some contradictory quotes and interpretations before an agreement is (sort of) achieved. http://mail.python.org/pipermail/python-dev/2008-July

[issue1581183] pickle protocol 2 failure on int subclass

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed on trunk, has tests. -- nosy: +ajaksu2 stage: -> needs patch title: pickle protocol 2 failure on int subclass -> pickle protocol 2 failure on int subclass type: -> behavior versions: +Python 2.6 ___ Pytho

[issue1579029] --disable-sunaudiodev --disable-tk does not work

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Closing again, for the same reasons. -- components: +Build -Tkinter nosy: +ajaksu2 stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue1578999] PyArg_ParseTuple corrections

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Are these corrections still relevant? -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed type: -> behavior versions: +Python 2.6 ___ Python tracker

[issue1578643] various datetime methods fail in restricted mode

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> low stage: -> test needed type: -> behavior ___ Python tracker ___ ___ Python-bug

[issue1576598] ftplib doesn't follow standard

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Denis, can you confirm this is a Python issue? I'll close this otherwise. -- nosy: +ajaksu2 stage: -> test needed status: open -> pending type: -> behavior versions: +Python 2.6 ___ Python tracker

[issue1576313] os.execvp[e] on win32 fails for current directory

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.5 ___ Python tracker ___ _

[issue1576120] Support spawnvp[e] + use native execvp[e] on win32

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.6 ___ Python tracker ___ _

[issue1575020] Request wave support > 16 bit samples

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> low stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Python-

[issue1574310] os.popen with os.close gives error message

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: I'll close this based on Ronald's analysis unless opposition is voiced. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed status: open -> pending type: -> behavior versions: +Python 2.6 -Python 2.4 ___

[issue1574217] isinstance swallows exceptions

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +patch stage: -> patch review type: -> behavior versions: +Python 2.7, Python 3.1 -Python 2.4, Python 2.5, Python 2.6 ___ Python tracker __

[issue1573931] WSGI, cgi.FieldStorage incompatibility

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Library (Lib) -None keywords: +patch stage: -> patch review type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker _

[issue1572968] release GIL while doing I/O operations in the mmap module

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Python-bug

[issue5596] memory leaks in 3.1

2009-03-30 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: About test_urllib2_localnet, this leak happens because FakeProxyHandler has class variable digest_auth_handler and its instance variables are modified. Following workaround can fix this leak, but I'm not sure this can be committed. Index: Lib/test/test_urlli

[issue1531859] Tracing and profiling functions can cause hangs in threads

2009-03-30 Thread rocky bernstein
rocky bernstein added the comment: Well, in the over 3 years since this has last been looked at, I wouldn't be surprised if someone else noticed the problem and therefore it has since been fixed. Was version 2.6 released back in January '06? Python news seems to indication that October 2008 is

[issue1542544] Improve dynamic linking support on AIX

2009-03-30 Thread Göran Uddeborg
Göran Uddeborg added the comment: It is a bit unclear. We are currently still using Python 2.4 with my patch for the active releases of our products. It is at this time not quite clear if we will continue to support AIX in future releases. If we do, we will also have to upgrade to a newer Pyt

[issue1528154] New sequences for Unicode groups and block ranges needed

2009-03-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: No progress has been made. I still maintain that TR18 should be implemented. I'm not so sure whether the POSIX special groups should be provided. My understanding is that they originally were meant to integrate with the locale support, and change with loca

[issue5390] Item 'Python x.x.x' in Add/Remove Programs list still lacks an icon

2009-03-30 Thread Retro
Changes by Retro : -- versions: +Python 2.4, Python 2.5, Python 2.6, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue1583863] __str__ cannot be overridden on unicode-derived classes

2009-03-30 Thread STINNER Victor
STINNER Victor added the comment: Case "S" (type str): "%s" uses _PyObject_Str() which checks the object type with PyString_CheckExact(). Case "U" (type unicode) "%s" uses PyUnicode_Check() and then calls PyUnicode_Format(). PyUnicode_Format() uses PyUnicode_Check() to check the object objec

[issue1583863] __str__ cannot be overridden on unicode-derived classes

2009-03-30 Thread STINNER Victor
STINNER Victor added the comment: Patch: Use PyUnicode_CheckExact() instead of PyUnicode_CheckExact() in PyUnicode_Format() to use obj.__unicode__ slot. -- keywords: +patch Added file: http://bugs.python.org/file13467/format_unicode.patch ___ Python

[issue1576598] ftplib doesn't follow standard

2009-03-30 Thread Denis S. Otkidach
Denis S. Otkidach added the comment: Yes, it's a problem in Python library. I believe the patch proposed by Oleg in the issue821862 is the best solution to it. -- ___ Python tracker _

[issue1513802] __del__: Type is cleared before instances

2009-03-30 Thread Benjamin Peterson
Benjamin Peterson added the comment: No, but I believe this is addressed in some other bugs like #812369. -- nosy: +benjamin.peterson resolution: -> duplicate status: open -> closed ___ Python tracker _

[issue1569040] Speed up using + for string concatenation

2009-03-30 Thread Benjamin Peterson
Benjamin Peterson added the comment: In that case, I think it's probably ok to reopen until we have a more definite accept or reject. -- resolution: rejected -> status: closed -> open ___ Python tracker ___

[issue1571878] Improvements to socket module exceptions

2009-03-30 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue1569040] Speed up using + for string concatenation

2009-03-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: For information, I haven't done any benchmarks, but the StringIO type in Python 3.1 should be very efficient for this kind of purposes. -- nosy: +pitrou ___ Python tracker _

[issue1572968] release GIL while doing I/O operations in the mmap module

2009-03-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: I don't know mmap myself but patches are welcome. -- nosy: +pitrou priority: -> normal stage: test needed -> needs patch type: feature request -> performance versions: +Python 3.1 ___ Python tracker

[issue1576598] ftplib doesn't follow standard

2009-03-30 Thread Oleg Broytmann
Oleg Broytmann added the comment: This is a duplicate of the issue http://bugs.python.org/issue821862 -- nosy: +phd ___ Python tracker ___

[issue5131] pprint doesn't know how to print a set or a defaultdict

2009-03-30 Thread Nick Craig-Wood
Nick Craig-Wood added the comment: I couldn't actually get this patch to apply to the py3k branch :-( $ patch -p0 --dry-run < issue_5131.patch patching file Misc/NEWS Hunk #1 FAILED at 2598. 1 out of 1 hunk FAILED -- saving rejects to file Misc/NEWS.rej patching file Misc/ACKS Hunk #1 succeeded

[issue821862] ftplib: Strict RFC 959 (telnet in command channel)

2009-03-30 Thread Oleg Broytmann
Oleg Broytmann added the comment: Since I've created the issue I found there are different servers even in Unix. ProFTPd (and, I believe wu-ftpd) strictly implement telnet-in-command channel, they even don't have an option to turn it off. PureFTPd doesn't implement it. On the client side - lftp

[issue1522237] _threading_local.py logic error in _localbase __new__

2009-03-30 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: It is still valid: >>> class MyLocal(local): ...def __init__(self, *args, **kwargs): ...self.args = args ...self.kwargs = kwargs ... >>> MyLocal(1) This works when local is thread._local (from thread import _local as local), but fails

[issue1528154] New sequences for Unicode groups and block ranges needed

2009-03-30 Thread Matthew Barnett
Matthew Barnett added the comment: I implemented \p, \P and [:...:] for the simple categories (eg "Lu" and "upper", but not "IsGreek") in the work I did for issue #2636. -- nosy: +mrabarnett ___ Python tracker _

[issue1580] Use shorter float repr when possible

2009-03-30 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue1544102] ctypes unit test fails (test_macholib.py) under MacOS 10.4.7

2009-03-30 Thread Reed O'Brien
Reed O'Brien added the comment: I am no longer using OSX 10.4.x, but this issue appears fixed in 2.5.4 and 2.6.1 on OSX 10.5.6 I have no reason for this to stay open -- nosy: +robrien ___ Python tracker ___

[issue1674032] Make threading.Event().wait(timeout=3) return isSet

2009-03-30 Thread Tim Lesher
Tim Lesher added the comment: Thanks, Antoine. I will re-check the patch against trunk and add tests this week. -- ___ Python tracker ___

[issue4352] imp.find_module() fails with a UnicodeDecodeError when called with non-ASCII search paths

2009-03-30 Thread Guido van Rossum
Guido van Rossum added the comment: At the sprint, Andrew Svetlov, Martin von Loewis and I looked into this a bit, and discovered that Andrew's Vista copy uses a Russian locale for the filesystem encoding (despite using English as the language). In this locale, a-umlaut cannot be represented in

[issue5390] Item 'Python x.x.x' in Add/Remove Programs list still lacks an icon

2009-03-30 Thread Martin v. Löwis
Changes by Martin v. Löwis : -- versions: -Python 2.4, Python 2.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue5604] imp.find_module() mixes UTF8 and MBCS

2009-03-30 Thread Guido van Rossum
New submission from Guido van Rossum : There's a path in imp.find_module that mixes encodings. The module name is encoded to char* using UTF-8 by the 's' format passed to PyArg_ParseTuple(). But the path name is converted (in the loop over the path in find_module()) to char* using the filesyste

[issue1350] IDLE - CallTips enhancement - show full doc-string in new window

2009-03-30 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: I think that because of the re-write of CallTips.py for py3k that we would need separate patches for 2.7 and 3.1. I suggest dropping the idea of adding the functionality to 2.7 unless OP wants to provide a separate patch against TRUNK. Because of the re-wri

[issue2754] Mac version of IDLE doesn't scroll as expected

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm closing this issue because I'v confirmed that the issue goes away when I install a newer version of Tk In /Library/Frameworks. -- resolution: -> invalid status: open -> closed ___ Python tracker

[issue4865] system wide site-packages dir not used on Mac OS X

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm in favour of adding /Library/Python/x.y/ to sys.path for Python 2.7 and 3.1 and will work on that during the Pycon sprints. /Library/Python will be added after the site-packages directory inside the framework instead of replacing the latter directory. Th

[issue5270] OS X installer: faulty Python.app bundle inside of framework

2009-03-30 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: -> ronaldoussoren nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing

[issue2577] cmd.py should track input file objects so macros with submacros can be easily written

2009-03-30 Thread Richard King
Richard King added the comment: ok, thanks. R. David Murray wrote: > R. David Murray added the comment: > > Since it's been almost a year and the OP hasn't responded with an > updated patch, I'm closing this as out of date. > > -- > nosy: +bitdancer > resolution: -> out of date > stat

[issue5271] OS X installer: build can fail on import checks

2009-03-30 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: -> ronaldoussoren nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing

[issue1581182] Definition of a "character" is wrong

2009-03-30 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: See this talk for an explanation of the various Unicode terms and how they map to Python's implementation: http://www.egenix.com/library/presentations/#PythonAndUnicode Also note that the Unicode standard has evolved a lot since Unicode support was added t

[issue2522] locale.format() problems with decimal separator

2009-03-30 Thread Andrii V. Mishkovskyi
Andrii V. Mishkovskyi added the comment: Nice to see this moving forward. Your patch looks nicer than my naive approach and I hope it's going to be applied. Thanks for investigation. :) -- ___ Python tracker __

[issue3485] os.path.normcase documentation/behaviour unclear on Mac OS X

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: The following patch explicitly mentions that os.path.normcase treats OSX like any other Unix platform. I'm in favor of applying this. -- keywords: +patch nosy: +ronaldoussoren versions: +Python 2.6, Python 2.7, Python 3.1 Added file: http://bugs.pyth

[issue5514] Darwin framework libpython3.0.a is not a normal static library

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Jack: do I understand you correctly when I interpret your message to mean that libpython3.0.a inside the Python framework won't be usable as a library that's linked using '-lpython3.0' in a future edition of Xcode? That would be a bummer. The current name wa

[issue5436] test_distutils fails with official Mac OS X Installer Disk Image (3.0.1)

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Tarek: I don't understand your comment. Both the tests and code in distutils look correct to me, although one of them should be wrong given the failure that Martina is seeing. (I've check the code in Python's trunk and 3.x branch) -- nosy: +ronaldou

[issue1089399] Carbon.Res misses GetIndString

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Closing this because this is a feature request and the Carbon bindings are deprecated. -- nosy: +ronaldoussoren resolution: -> wont fix status: open -> closed ___ Python tracker

[issue1099] Mac compile fails with pydebug and framework enabled

2009-03-30 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- assignee: -> ronaldoussoren nosy: +ronaldoussoren ___ Python tracker ___ ___ Python-bugs-list mailing

[issue1090958] _AEModule.c patch

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Closing because these are feature enhancements and the Carbon bindings are deprecated. -- nosy: +ronaldoussoren resolution: -> wont fix status: open -> closed ___ Python tracker

[issue785031] MacPython installer fails on UFS filesystem

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Python is just one of the many things that will fail on a case sensitive root filesystem. I'm not particularly interested in fixing this issue. This doesn't affect Python 3.x because the code that causes this problem is not present in 3.x. Setting state to

[issue5605] Don't assume that repr of literal dicts are sorted like pprint sorts them.

2009-03-30 Thread Frank Wierzbicki
New submission from Frank Wierzbicki : test_same_as_repr in test_pprint.py assumes repr of literal dict {5:6, 7:8} will be ordered. This definitely is not the case for Jython, and the comments above the test appear to indicate that it is not a guarantee of CPython either. -- components:

[issue602291] Bgen should learn about booleans

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Jack: are you planning to work on this? I propose to close this issue if your not because bgen in the python.org tree is basically dead at this point. Any enhancements would be better of a separate project. -- nosy: +ronaldoussoren

[issue1254695] QuickTime API needs corrected object types

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've applied these patches in revision r70713, the bugfix will be in python 2.7. Also backported to 2.6 in r70715. -- nosy: +ronaldoussoren resolution: -> accepted status: open -> closed ___ Python tracker

[issue1584] Mac OS X: building with X11 Tkinter

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Adding support for building an X11 version of Tkinter would require an explicit flag to configure, defaulting to a build that uses AquaTk (which most people would like to use). I'm not interested in creating a patch for this, but am willing to review patche

[issue5605] Don't assume that repr of literal dicts are sorted like pprint sorts them.

2009-03-30 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r70712. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue1522237] _threading_local.py logic error in _localbase __new__

2009-03-30 Thread Tony Nelson
Tony Nelson added the comment: Thanks, Amaury. The new test works here on Python2.6.1, failing without the fix and passing with it. (Passing MyLocal(a=1) and failing MyLocal(1), as expected.) With the fix, _threading_local.py supports positional arguments to subclass __init__, as well as keyw

[issue1175933] threading.Condition.wait() return value indicates timeout

2009-03-30 Thread Guido van Rossum
Guido van Rossum added the comment: Since Tim Peters is the absolute authority on concurrency in Python, let's just close this as Rejected rather than letting it sit here forever. -- nosy: +gvanrossum resolution: -> rejected status: open -> closed _

[issue5177] multiprocessing: SocketListener should use SO_REUSEADDR

2009-03-30 Thread Jesse Noller
Jesse Noller added the comment: Resolved in r70717 on python trunk. Will merge back into 2.6-maint later today. Test added as well. -- resolution: -> fixed ___ Python tracker _

[issue5177] multiprocessing: SocketListener should use SO_REUSEADDR

2009-03-30 Thread Jesse Noller
Changes by Jesse Noller : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue1674032] Make threading.Event().wait(timeout=3) return isSet

2009-03-30 Thread Guido van Rossum
Guido van Rossum added the comment: Looking at this, I think this change is fine. The _Event class itself holds the condition that it's checking for, and the is_set() method doesn't acquire the lock, so there's no reason to prefer e.wait() if e.is_set(): GOT_IT() over if e.wait(): GO

[issue896199] Some Carbon modules missing from documentation

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixed in r70719 (trunk) and r70720 (2.6) -- nosy: +ronaldoussoren resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue1522237] _threading_local.py logic error in _localbase __new__

2009-03-30 Thread Guido van Rossum
Guido van Rossum added the comment: Looks good to me. Amaury, can you make sure this lands in 2.6, 2.7, 3.0 and 3.1? -- assignee: -> amaury.forgeotdarc nosy: +gvanrossum resolution: -> accepted ___ Python tracker

[issue5131] pprint doesn't know how to print a set or a defaultdict

2009-03-30 Thread Jack Diederich
Jack Diederich added the comment: py3k is different enough (esp the NEWS) that I'll have to apply it by hand. This patch was against the 2.x trunk. -- ___ Python tracker ___ ___

[issue5570] Bus error when calling .poll() on a closed Connection from multiprocessing.Pipe()

2009-03-30 Thread Jesse Noller
Jesse Noller added the comment: Merged back in CL 70721 on 26 maint -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue5606] The makefile dependencies listing formatter.h are wrong

2009-03-30 Thread Daniel Stutzbach
New submission from Daniel Stutzbach : The makefile lists Objects/stringlib/formatter.h as a dependency for Objects/unicodeobject.o, which doesn't include formatter.h. Python/formatter_unicode includes it, but doesn't list it as a dependency. I've attached a patch for Makefile.pre.in for the

[issue974159] Starting a script in OSX within a specific folder

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Floris: you can run the script from a Terminal window. Alternatively you can use the Python Launcher tool that's location in /Applications/Python X.Y (select it from the context-menu for a .py file) -- resolution: -> works for me stage: -> committe

[issue5129] indentation in IDLE 2.6 different from IDLE 2.5, 2.4 or vim

2009-03-30 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: r70723. Thanks for the patch! Backport to 2.6.2 -- keywords: +26backport resolution: -> accepted versions: +Python 2.7, Python 3.1 ___ Python tracker _

[issue4773] HTTPMessage not documented and has inconsistent API across 2.6/3.0

2009-03-30 Thread Jeremy Hylton
Jeremy Hylton added the comment: The attached file is vaguely related to the current discussion. I'd like to document the API for the urllib response, but I'd also like to simplify the implementation on the py3k side. We can document the simple API on the py3k side, then support some version o

[issue5129] indentation in IDLE 2.6 different from IDLE 2.5, 2.4 or vim

2009-03-30 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue5607] Lib/distutils/test/test_util: test_get_platform bogus for OSX

2009-03-30 Thread Ronald Oussoren
New submission from Ronald Oussoren : the testcase test_get_platform is not entirely correct for the OSX case. Background: OSX supports fat binary builds (Apple calls those Universal Binaries). The testitem for OSX gives a false negative when you run the test with a Universal Binary build of P

[issue5607] Lib/distutils/test/test_util: test_get_platform bogus for OSX

2009-03-30 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- versions: +Python 2.7, Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1703178] link_objects in setup.cfg crashes build

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> tarek components: +Build, Distutils -None nosy: +tarek stage: -> test needed type: -> behavior versions: +Python 2.6, Python 3.0 -Python 2.4 ___ Python tracker ___

[issue1702036] Turtle isn't thread-safe (crashes)

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker ___ ___ Python-

[issue1711605] CGIHttpServer leaves traces of previous requests in env

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Library (Lib) -Extension Modules stage: -> test needed type: -> behavior versions: +Python 2.6, Python 3.0 -Python 2.5 ___ Python tracker __

[issue1724822] provide a shlex.split alternative for Windows shell syntax

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> georg.brandl components: +Documentation stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ _

[issue1726208] SimpleHTTPServer extensions_map

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.5 ___ Python tracker ___ ___ Pyth

[issue1714773] python throws an error when unpacking bz2 file

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Extension Modules -None stage: -> test needed type: -> crash versions: +Python 2.6 -Python 2.5 ___ Python tracker ___ __

[issue1728741] move intern to sys, make intern() optionally warn

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.6 ___ Python tracker ___ _

[issue4799] handling inf/nan in '%f'

2009-03-30 Thread Mark Dickinson
Mark Dickinson added the comment: Assigning to Eric, at his request. -- assignee: marketdickinson -> eric.smith nosy: +eric.smith ___ Python tracker ___ _

[issue5436] test_distutils fails with official Mac OS X Installer Disk Image (3.0.1)

2009-03-30 Thread Ned Deily
Ned Deily added the comment: I believe r69307, checked in after 3.0.1, removes the faulty test in test_get_python_inc so this failure no longer occurs on py3k builds snd this issue can probably be closed. -- nosy: +nad ___ Python tracker

[issue4482] 10e667.__format__('+') should return 'inf'

2009-03-30 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Here's a patch to add tests for this and a few other problems with formatting inf/-inf/nan, as well as a patch that fixes the problems. -- keywords: +patch nosy: +stutzbach versions: +Python 2.7, Python 3.1 Added file: http://bugs.python.org/file13474

[issue4482] 10e667.__format__('+') should return 'inf'

2009-03-30 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : Added file: http://bugs.python.org/file13475/inf.patch ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1691387] Call sys.except_hook if exception occurs in __del__

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker ___ ___ Python-

[issue1689458] pdb unable to jump to first statement

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-

[issue1244861] Enable os.startfile and webbrowser.WindowsDefault on Cygwin

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Windows stage: -> test needed type: -> feature request versions: +Python 2.7 ___ Python tracker ___

[issue1699594] shlex fails to parse strings correctly

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- dependencies: +shlex.split() does not tokenize like the shell stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker __

[issue1700304] pydoc.help samples sys.stdout and sys.stdin at import time

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- priority: normal -> low stage: -> test needed type: -> feature request versions: +Python 2.7, Python 3.1 -Python 2.4 ___ Python tracker ___ _

[issue1697175] winreg module for cygwin?

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1690103] trace module borks __file__

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-

[issue4848] MacPython build script uses Carbon and MacOS modules slated for removal

2009-03-30 Thread Ronald Oussoren
Ronald Oussoren added the comment: Fixed in r70727 (trunk), r70728 (2.6) and r70729 (3.1) -- status: open -> closed ___ Python tracker ___ ___

[issue1590068] Error piping output between scripts on Windows

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Windows stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker ___ ___

[issue1590352] The "lazy strings" patch

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: ISTM that 2.x won't receive this kind on enhancement anymore. Collin, I'm adding you to the nosy list because you may be interested in having this (either on unladen or CPython). If so, also take a look at issue 1569040. -- nosy: +ajaksu2, collinwinter

[issue1590744] mail message parsing glitch

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker ___ ___

[issue1592241] Stepping into a generator throw does not work

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker ___ ___

[issue1597798] Modules/readline.c fails to compile on AIX 4.2

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: I'll close this on lack of feedback unless someone voices opposition. -- nosy: +ajaksu2 priority: normal -> low stage: -> test needed status: open -> pending type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Py

[issue1599254] mailbox: other programs' messages can vanish without trace

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Barry: is this on scope for the email sprint? -- keywords: +patch nosy: +ajaksu2, barry stage: -> patch review type: -> behavior versions: +Python 2.6 -Python 2.5 ___ Python tracker

[issue1600182] Tix ComboBox entry is blank when not editable

2009-03-30 Thread Daniel Diniz
Daniel Diniz added the comment: Tim: do you agree with the default colors explanation? -- nosy: +ajaksu2, gpolo stage: -> test needed type: -> behavior versions: +Python 2.6, Python 3.0 ___ Python tracker

  1   2   3   4   >