[issue11477] Bug in code dispatching based on internal slots

2011-03-13 Thread Daniel Urban
Changes by Daniel Urban urban.dani...@gmail.com: -- nosy: +durban ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11477 ___ ___ Python-bugs-list

[issue3493] No Backslash (\) in IDLE 1.2.2

2011-03-13 Thread Ned Deily
Changes by Ned Deily n...@acm.org: Removed file: http://bugs.python.org/file21099/unnamed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3493 ___ ___

[issue11480] Cannot copy a class with a metaclass other than type

2011-03-13 Thread Daniel Urban
New submission from Daniel Urban urban.dani...@gmail.com: copy.copy cannot copy a class which have a metaclass other than type: import abc import copy class C(metaclass=abc.ABCMeta): ... pass ... copy.copy(C) Traceback (most recent call last): ... TypeError: can't pickle int

[issue1635741] Interpreter seems to leak references after finalization

2011-03-13 Thread Santoso Wijaya
Changes by Santoso Wijaya santoso.wij...@gmail.com: -- nosy: +santa4nt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1635741 ___ ___

[issue11481] The copy module already uses copyreg

2011-03-13 Thread Daniel Urban
New submission from Daniel Urban urban.dani...@gmail.com: In the copyreg documentation there is this sentence: The copy module is likely to use this in the future as well. (http://docs.python.org/dev/py3k/library/copyreg) But the copy module already uses the copyreg module. --

[issue7689] Pickling of classes with a metaclass and copy_reg

2011-03-13 Thread Daniel Urban
Daniel Urban urban.dani...@gmail.com added the comment: Attaching an updated patch for py3k. Not an expert, but the Python parts of your patch look good to me. Me neither, but the C parts also look good to me. The tests fail without the patch, succeed with it. Note, that it is possible, that

[issue11482] Float Plus Error

2011-03-13 Thread Lu Feng
New submission from Lu Feng lufen...@gmail.com: Run 1.1 + 3.2, result is 4.301 And when Run [x * 0.1 for x in range(0, 10)], the result is [0.0, 0.1, 0.2, 0.30004, 0.4, 0.5, 0.6001, 0.7001, 0.8, 0.9] -- messages: 130734 nosy:

[issue11482] Float Plus Error

2011-03-13 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: See: http://docs.python.org/tutorial/floatingpoint.html -- nosy: +mark.dickinson resolution: - invalid status: open - closed ___ Python tracker rep...@bugs.python.org

[issue11477] Bug in code dispatching based on internal slots

2011-03-13 Thread Armin Rigo
Armin Rigo ar...@users.sourceforge.net added the comment: Note that I fixed one case in PyPy: if the class C has no __iter__() but only __radd__(), and we call somelist += C(). This was done simply by having somelist.__iadd__(x) return NotImplemented in case x is not iterable, instead of

[issue7391] Re-title the Using Backslash to Continue Statements anti-idiom

2011-03-13 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7391 ___ ___ Python-bugs-list

[issue2931] optparse: various problems with unicode and gettext

2011-03-13 Thread Ivan Vilata i Balaguer
Ivan Vilata i Balaguer ivil...@users.sourceforge.net added the comment: After so much time I've checked again with the little script I sent and I see that it doesn't happen under Python 2.7 (2.7.1+), but it does under 2.6 (2.6.6) and 2.5 (2.5.5). --

[issue10735] platform.architecture() gives misleading results for OS X multi-architecture executables

2011-03-13 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: W.r.t the MachO name: I misread the patch, MachO is fine as the name for the reasons you mention. I'm not convinced that your hack to make bits return the pointer size of the currently running architecture when testing sys.executable

[issue11479] Add discussion of trailing slash in raw string to tutorial

2011-03-13 Thread Graham Wideman
Graham Wideman initcont...@grahamwideman.com added the comment: Eli: Excellent and thoughtful point. This would indeed be exactly the place to suggest os.path.join as an alternative. In addition, there are still occasions where one needs to form a string with trailing backslash. Two

[issue11483] python fails to follow symlinks on windows

2011-03-13 Thread nw
New submission from nw nils.win...@googlemail.com: Go to C:/Python2.7/Lib create directory foo + __init__.py Make a symlink: mklink /D bar foo. Start Python. import foo # works import bar # fails (no module named bar) -- components: Windows messages: 130740 nosy: nw priority: normal

[issue11483] python fails to follow symlinks on windows

2011-03-13 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +brian.curtin type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11483 ___

[issue11483] python fails to follow symlinks on windows

2011-03-13 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: This is a duplicate of #6727, which is now easier to fix due to the symlink work in 3.2. -- resolution: - duplicate stage: - committed/rejected status: open - closed ___ Python tracker

[issue6727] ImportError when package is symlinked on Windows

2011-03-13 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- nosy: +brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6727 ___ ___ Python-bugs-list mailing

[issue11479] Add discussion of trailing slash in raw string to tutorial

2011-03-13 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: I would rephrase: +There is one subtle aspect to raw strings that is of special concern to Windows +programmers: a raw string may not end in an odd number of ``\`` characters. to something like: +There is one subtle aspect to raw strings:

[issue11479] Add discussion of trailing slash in raw string to tutorial

2011-03-13 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Ezio Melotti ezio.melo...@gmail.com added the comment: I would rephrase: +There is one subtle aspect to raw strings that is of special concern to Windows +programmers: a raw string may not end in an odd number of ``\`` characters. to

[issue11479] Add discussion of trailing slash in raw string to tutorial

2011-03-13 Thread SilentGhost
Changes by SilentGhost ghost@gmail.com: Removed file: http://bugs.python.org/file21102/unnamed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11479 ___

[issue11477] Bug in code dispatching based on internal slots

2011-03-13 Thread Meador Inge
Changes by Meador Inge mead...@gmail.com: -- nosy: +meador.inge ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11477 ___ ___ Python-bugs-list

[issue11479] Add discussion of trailing slash in raw string to tutorial

2011-03-13 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: That would of course be a good addition too. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11479 ___

[issue2931] optparse: various problems with unicode and gettext

2011-03-13 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: I’m afraid 2.5 and 2.6 don’t get bug fixes any more, only security fixes. For 2.7 and 3.x, even if your bug can’t be reproduced, I think it would be useful to add the test to prevent a regression. --

[issue2771] Test issue

2011-03-13 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- resolution: fixed - status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___

[issue2771] Test issue

2011-03-13 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset e51cd925a89a by Ezio Melotti in branch 'default': Test hook (closes #2771). http://hg.python.org/test/rev/e51cd925a89a -- resolution: - fixed stage: - committed/rejected status: open - closed

[issue2931] optparse: various problems with unicode and gettext

2011-03-13 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: +1 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2931 ___ ___ Python-bugs-list mailing

[issue11479] Add discussion of trailing slash in raw string to tutorial

2011-03-13 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Well, the problem with both [:-1] and os.path.join is that they are inappropriate for that section of the tutorial. I considered putting the discussion later in the section so that I could use [:-1] (which hasn't been introduced at

[issue1271] Raw string parsing fails with backslash as last character

2011-03-13 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Well, the problem with the reference is that the language reference is intended as a specification document, not a tutorial, so such a discussion does not belong there. The library reference, which does contain platform-specific and

[issue2771] Test issue

2011-03-13 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- hgrepos: +1 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___ ___ Python-bugs-list mailing

[issue2771] Test issue

2011-03-13 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- hgrepos: +2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___ ___ Python-bugs-list mailing

[issue2771] Test issue

2011-03-13 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: Added file: http://bugs.python.org/file21103/6a1c8fcce229.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___

[issue2771] Test issue

2011-03-13 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___ ___

[issue2771] Test issue

2011-03-13 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___ ___

[issue2771] Test issue

2011-03-13 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___ ___

[issue5863] bz2.BZ2File should accept other file-like objects.

2011-03-13 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Review posted at http://codereview.appspot.com/4274045/ -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5863 ___

[issue5863] bz2.BZ2File should accept other file-like objects. (issue4274045)

2011-03-13 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Reviewers: nadeem vawda nadeem.vawda_gmail.com, http://codereview.appspot.com/4274045/diff/1/Lib/bz2.py File Lib/bz2.py (right): http://codereview.appspot.com/4274045/diff/1/Lib/bz2.py#newcode25 Lib/bz2.py:25: class BZ2File: Is there any reason

[issue9856] Change object.__format__(s) where s is non-empty to a TypeError

2011-03-13 Thread Eric Smith
Changes by Eric Smith e...@trueblade.com: -- priority: release blocker - deferred blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9856 ___

[issue5800] make wsgiref.headers.Headers accept empty constructor

2011-03-13 Thread SilentGhost
SilentGhost ghost@gmail.com added the comment: Looks good to me. Would you mind committing it then? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5800 ___

[issue1777134] minidom pretty xml output improvement

2011-03-13 Thread Dávid Gábor Bodor
Dávid Gábor Bodor david.gabor.bo...@gmail.com added the comment: I would prefer to see this improvement as an option, rather than the default, because I believe that 'Issue4147' satisfies pretty printing better. While leaving out whitespace from text-only elements is benefical for

[issue11223] interruption of locks by signals not guaranteed when the semaphore implementation is not used

2011-03-13 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 5d0d488cbca8 by Antoine Pitrou in branch '3.2': Issue #11223: Fix test_threadsignals to fail, not hang, when the http://hg.python.org/cpython/rev/5d0d488cbca8 -- nosy: +python-dev ___

[issue11233] clarifying Availability: Unix

2011-03-13 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset f197dac00f43 by Antoine Pitrou in branch 'default': Merge commit for #11233 http://hg.python.org/cpython/rev/f197dac00f43 -- nosy: +python-dev ___ Python tracker rep...@bugs.python.org

[issue2771] Test issue

2011-03-13 Thread Martin v . Löwis
Changes by Martin v. Löwis mar...@v.loewis.de: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___ ___

[issue11478] Docs list nonexistant PyObject_CopyToObject function

2011-03-13 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Indeed, it doesn't exist. There is also a function named PyObject_CopyData which is not documented anywhere (and I'd bet noone has ever used it). -- nosy: +mark.dickinson, pitrou ___ Python tracker

[issue11478] Docs list nonexistant PyObject_CopyToObject function

2011-03-13 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 539e6f1fce78 by Antoine Pitrou in branch '3.1': Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478) http://hg.python.org/cpython/rev/539e6f1fce78 New changeset eb8c2f43b251 by Antoine Pitrou in branch

[issue11478] Docs list nonexistant PyObject_CopyToObject function

2011-03-13 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 248800b58175 by Antoine Pitrou in branch '2.7': Remove documentation to non-existent function PyObject_CopyToObject (fixes #11478) http://hg.python.org/cpython/rev/248800b58175 -- ___

[issue11478] Docs list nonexistant PyObject_CopyToObject function

2011-03-13 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11478 ___

[issue5863] bz2.BZ2File should accept other file-like objects. (issue4274045)

2011-03-13 Thread Nadeem Vawda
Nadeem Vawda nadeem.va...@gmail.com added the comment: Thanks for the review. I'll try and have an updated patch ready by next weekend. Regarding your comments: Is there any reason it doesn't inherit io.BufferedIOBase? No, there isn't; I'll fix that in my revised patch. Since this is a new

[issue11484] `with_traceback` in 2.7 docs but not implemented

2011-03-13 Thread Jonas H.
New submission from Jonas H. jo...@lophus.org: Either a `BaseException.with_traceback` implementation is missing or the docs are wrong. http://docs.python.org/library/exceptions.html?highlight=with_traceback#exceptions.BaseException.with_traceback python3 -c 'print(with_traceback in

[issue11474] url2pathname() handling of '/C|/' on Windows

2011-03-13 Thread Santoso Wijaya
Santoso Wijaya santoso.wij...@gmail.com added the comment: I agree. Attaching a patch with a fix and unittest. -- keywords: +patch nosy: +santa4nt Added file: http://bugs.python.org/file21104/nturl2path.patch ___ Python tracker rep...@bugs.python.org

[issue11484] `with_traceback` in 2.7 docs but not implemented

2011-03-13 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 22f991bb9b0b by Ezio Melotti in branch '2.7': #11484: remove paragraph about with_traceback from 2.7 doc. http://hg.python.org/cpython/rev/22f991bb9b0b -- nosy: +python-dev ___ Python

[issue11484] `with_traceback` in 2.7 docs but not implemented

2011-03-13 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: It's a documentation bug, with_traceback is available in 3.x only. I now fixed the doc for 2.7, thanks for the report! -- assignee: docs@python - ezio.melotti nosy: +ezio.melotti resolution: - fixed stage: - committed/rejected

[issue11485] Default SDK value on MacOSX needs changing

2011-03-13 Thread Ronald Oussoren
New submission from Ronald Oussoren ronaldousso...@mac.com: (based on the fruitfull meating I had with Ned after the language summit at Pycon '11) Running configure on a MacOSX system will set MACOSX_DEPLOYMENT_TARGET to 10.4, which is probably not optimal for anyone on a recentish system.

[issue11467] urlparse.urlsplit() regression for paths consisting of digits

2011-03-13 Thread Santoso Wijaya
Changes by Santoso Wijaya santoso.wij...@gmail.com: -- nosy: +santa4nt versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11467 ___

[issue11486] Add option to not install into /Applications

2011-03-13 Thread Ronald Oussoren
New submission from Ronald Oussoren ronaldousso...@mac.com: It would be nice if it were possible to install a framework installation from source without also installing files into /Applications. This could be done by adding an option to configure --without-macosx-applications. The primairy

[issue11485] Default SDK value on MacOSX needs changing

2011-03-13 Thread Ronald Oussoren
Changes by Ronald Oussoren ronaldousso...@mac.com: -- versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11485 ___ ___

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: There was this failure in the daily DMG builder: http://www.python.org/dev/buildbot/all/builders/3.x.dmg/builds/423/steps/compile/logs/stdio The problem is that asdl_c.py gets run by the Makefile with the standard Python, which on this machine

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: I noticed this myself as well when building a fresh checkout, without build_installer.py. This is because the header file and input grammar have the same timestamp, and which forces the rebuild. That causes problems on OSX when you

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: To avoid duplicate work: I'll commit a patch during the pycon sprints -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11487 ___

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread David Bolen
David Bolen db3l@gmail.com added the comment: Just a few thoughts that were in part in an earlier exchange with Antoine. It seems to me that if the Python-ast.[ch] files are included in the repository then they ought to be up to date as part of any given change set. So I think I'd

[issue1590744] mail message parsing glitch

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 2.7, Python 3.1, Python 3.2, Python 3.3 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1590744 ___

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread Ronald Oussoren
Ronald Oussoren ronaldousso...@mac.com added the comment: This does not only affect the installer. On my machine the python on $PATH was build using the 10.6 deployment target. When I build python from a fresh checkout I get an error message because the 10.6 python gets run with deployment

[issue975330] Inconsistent newline handling in email module

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 2.7, Python 3.1, Python 3.2, Python 3.3 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue975330 ___

[issue11329] PyEval_InitThreads() not safe before Py_Initialize()

2011-03-13 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 4c59cd84086f by Antoine Pitrou in branch '3.2': Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() anymore http://hg.python.org/cpython/rev/4c59cd84086f New changeset 3c0edb157ea2 by Antoine Pitrou in branch

[issue11329] PyEval_InitThreads() not safe before Py_Initialize()

2011-03-13 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Patch now committed, thank you! -- resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11329

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread David Bolen
David Bolen db3l@gmail.com added the comment: Note that some of my last comment was before I saw the others, so I'm fine with script changes if that seems ok to others. From Ronald: This is because the header file and input grammar have the same timestamp, and which forces the rebuild.

[issue11474] url2pathname() handling of '/C|/' on Windows

2011-03-13 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +brian.curtin, orsenthil, tim.golden stage: - patch review versions: +Python 3.1, Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11474

[issue1681333] email.header unicode fix

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 2.7, Python 3.1, Python 3.2, Python 3.3 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1681333 ___

[issue2658] decode_header() fails on multiline headers

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 2.7, Python 3.1, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2658 ___

[issue1690608] email.utils.formataddr() should be rfc2047 aware

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 2.7, Python 3.1, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1690608 ___

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread David Bolen
David Bolen db3l@gmail.com added the comment: Note in the meantime, I've manually touched those two files on the dmg buildbot and it builds successfully. As Antoine pointed out to me separately, the hg update used by the buildbot should leave that intact, so this should stop any buildbot

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

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.3 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1443875 ___

[issue504152] rfc822 long header continuation broken

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue504152 ___ ___

[issue1440472] email.Generator is not idempotent

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1440472 ___ ___

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: I suspect this may be an issue now because the old svn approach was a full checkout for each build, whereas the hg approach is to pull to the local clone, and then just update the build tree. So in the svn case all the files would have a good

[issue11474] url2pathname() handling of '/C|/' on Windows

2011-03-13 Thread Santoso Wijaya
Changes by Santoso Wijaya santoso.wij...@gmail.com: Removed file: http://bugs.python.org/file21104/nturl2path.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11474 ___

[issue11474] url2pathname() handling of '/C|/' on Windows

2011-03-13 Thread Santoso Wijaya
Santoso Wijaya santoso.wij...@gmail.com added the comment: Oops, wrong library name in patch comment. -- Added file: http://bugs.python.org/file21105/nturl2path.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11474

[issue11474] url2pathname() handling of '/C|/' on Windows

2011-03-13 Thread Santoso Wijaya
Changes by Santoso Wijaya santoso.wij...@gmail.com: -- type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11474 ___ ___

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: (the change will probably make things worse actually; see http://bugs.python.org/issue11419) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11487

[issue11488] Add writelines test coverage in tempfile

2011-03-13 Thread ev
New submission from ev e...@ubuntu.com: Ran coverage.py and noticed that writelines had no coverage in tempfile, so I added it in. -- components: Tests files: test_tempfile_writelines.patch keywords: patch messages: 130778 nosy: brian.curtin, ev, georg.brandl priority: normal severity:

[issue11489] json.dumps not parsable by json.loads (on Linux only)

2011-03-13 Thread Brian Merrell
New submission from Brian Merrell br...@merrells.org: The following works on Win7x64 Python 2.6.5 and breaks on Ubuntu 10.04x64-2.6.5. This raises three issues: 1) Shouldn't anything generated by json.dumps be parsed by json.loads? 2) It appears this is an invalid unicode character.

[issue11487] build_installer.py should avoid relying on a young Python

2011-03-13 Thread David Bolen
David Bolen db3l@gmail.com added the comment: Guess I cry uncle - not sure how it used to work then. I just did a dummy svn checkout off of the older svn.python.org from trunk and the .[ch] files appear to have dates earlier than the asdl.py script, so I would have assumed it would have

[issue1079] decode_header does not follow RFC 2047

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1079 ___ ___

[issue9878] Avoid parsing pyconfig.h and Makefile by autogenerating extension module

2011-03-13 Thread Carl Meyer
Changes by Carl Meyer c...@dirtcircle.com: -- nosy: +carljm ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9878 ___ ___ Python-bugs-list mailing

[issue1162477] Parsing failures in parsedate_tz

2011-03-13 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 9d7a83654870 by R David Murray in branch 'default': #1162477: accept '.' in addition to ':' when parsing time in date header. http://hg.python.org/cpython/rev/9d7a83654870 -- nosy: +python-dev

[issue1162477] Parsing failures in parsedate_tz

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- resolution: - accepted stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1162477

[issue7679] Warning building 2.7 on OS X 10.6 libintl.h Present But Cannot Be Compiled

2011-03-13 Thread Nicholas Riley
Nicholas Riley com-python-b...@sabi.net added the comment: You should be able to invoke the compiler like this: gcc -nostdinc -I/usr/include -F/System/Library/Frameworks ... which will remove /usr/local/include (and /Library/Frameworks). This also removes the compiler-specific include dir,

[issue2650] re.escape should not escape underscore

2011-03-13 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: I took a look to what other languages do, and it turned out that: perl escapes [^A-Za-z_0-9] [0]; .net escapes the metachars and whitespace [1]; java escapes the metachars or escape sequences [2]; ruby escapes the metachars [3]; It might

[issue11490] subprocess test_leaking_fds_on_error fails if last directory in path is not accessible

2011-03-13 Thread R. David Murray
New submission from R. David Murray rdmur...@bitdance.com: test_subprocess was failing for me on my laptop, and my laptop only. With some guidance from haypo on using strace, I tracked the problem down to the fact that the last directory in my path is a directory to which I don't have

[issue11490] subprocess test_leaking_fds_on_error fails if last directory in path is not accessible

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- assignee: - r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11490 ___ ___

[issue11490] subprocess test_leaking_fds_on_error fails if last directory in path is not accessible

2011-03-13 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 2b75ac7c9c12 by R David Murray in branch '3.1': #11490: EACCES can also mean command not found http://hg.python.org/cpython/rev/2b75ac7c9c12 New changeset 67f4ef6094ed by R David Murray in branch '3.2': Merge fix for #11490 from

[issue11490] subprocess test_leaking_fds_on_error fails if last directory in path is not accessible

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11490

[issue11488] Add writelines test coverage in tempfile

2011-03-13 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Patch looks good to me. -- assignee: - r.david.murray nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11488 ___

[issue11488] Add writelines test coverage in tempfile

2011-03-13 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11488 ___ ___

[issue1025395] email.Utils.parseaddr fails to parse valid addresses

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1025395 ___ ___

[issue8769] Straightforward usage of email package fails to round-trip

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8769 ___ ___

[issue9967] encoded_word regular expression in email.header.decode_header()

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9967 ___ ___

[issue1823] Possible to set invalid Content-Transfer-Encoding on email.mime.multipart.MIMEMultipart

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.3 -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1823 ___ ___

[issue10574] email.header.decode_header fails if the string contains multiple directives

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.2, Python 3.3 -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10574 ___

[issue11021] email MIME-Version headers for each part in multipart message

2011-03-13 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Assuming this is correct (I haven't tried looking for the reference yet), I'm leaning toward it being enough of a behavior change that it should not be backported. -- versions: +Python 3.3 -Python 2.7, Python 3.1, Python 3.2

[issue5803] email/quoprimime: encode and decode are very slow on large messages

2011-03-13 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5803 ___ ___

  1   2   >