[issue11827] mention of list2cmdline() in docs of subprocess.Popen

2011-04-12 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: If a _ is added to list2cmdline the old name should be kept and deprecated. The function is also on 2.x and it's not deprecated there (and it's probably too late to deprecate it now), so we might have to wait a few versions before it will

[issue11832] Add option to pause regrtest to attach a debugger

2011-04-12 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: I can't judge if the functionality is needed, but I don't think the option should be called attach if all it does is input() somewhere... -- nosy: +georg.brandl ___ Python tracker

[issue7484] smtplib: verify breaks with Postfix servers

2011-04-12 Thread Catalin Iacob
Changes by Catalin Iacob iacobcata...@gmail.com: -- nosy: +catalin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7484 ___ ___ Python-bugs-list

[issue11828] startswith and endswith don't accept None as slice index

2011-04-12 Thread Torsten Becker
Torsten Becker torsten.bec...@gmail.com added the comment: Just realized that part of my v1 patch did not conform to PEP 7, I hope, I fixed that in v2. Please also excuse for the wrong name of the error message patch, it was supposed to be named issue-11828-error-msg-tests.patch. --

[issue11828] startswith and endswith don't accept None as slice index

2011-04-12 Thread Torsten Becker
Changes by Torsten Becker torsten.bec...@gmail.com: Added file: http://bugs.python.org/file21627/issue-11828-error-msg-tests.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11828 ___

[issue11828] startswith and endswith don't accept None as slice index

2011-04-12 Thread Torsten Becker
Changes by Torsten Becker torsten.bec...@gmail.com: Removed file: http://bugs.python.org/file21623/issue-8282-error-message-tests.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11828 ___

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread anatoly techtonik
New submission from anatoly techtonik techto...@gmail.com: http://docs.python.org/install/index.html#how-installation-works Correct standard installation location for third-party modules on Windows for Python 2.x is prefix/Lib/site-packages -- assignee: docs@python components:

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11834 ___ ___

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: Other Windows prefixes are probably wrong too. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11834 ___

[issue11313] Speed up default encode()/decode()

2011-04-12 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: Committed issue11313.diff in revision 88553. The revision number seems to be wrong -- maybe the commit got lost during the mercurial migration. All the changes of the patch seem to be there though, even if they went in with other

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread Brian Curtin
Changes by Brian Curtin br...@python.org: -- stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11834 ___ ___ Python-bugs-list

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: I ran the tests again on 2.7 and got 3 failures: == ERROR: test_c_scanstring (json.tests.test_scanstring.TestScanString)

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: How about 'easy' keyword? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11834 ___ ___

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- keywords: +easy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11834 ___ ___ Python-bugs-list

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: It's a doc issue. Doc issues are pretty much by definition easy in the sense of the easy keyword (doable in a day) (unless they are controversial), so we don't bother to attach the easy keyword to them. -- nosy: +r.david.murray

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: Target auditory for the `easy` keyword are largely unaware of this fact. It also may keep people off if they run into uneasy doc problem. -- ___ Python tracker rep...@bugs.python.org

[issue11828] startswith and endswith don't accept None as slice index

2011-04-12 Thread Torsten Becker
Torsten Becker torsten.bec...@gmail.com added the comment: Hi, since nobody stopped me by complaining about the approach or the first patch, I now fixed this for bytes and bytearray as well. :) I renamed the old _ParseTupleFinds function to stringlib_parse_tuple_finds, added a parameter for

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 500063f6ae5a by Ezio Melotti in branch '2.7': #9233: skip _json-specific tests when _json is not available. http://hg.python.org/cpython/rev/500063f6ae5a -- nosy: +python-dev ___ Python

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread Brian Curtin
Changes by Brian Curtin br...@python.org: -- nosy: -brian.curtin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11834 ___ ___ Python-bugs-list

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- assignee: - ezio.melotti versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9233 ___

[issue11832] Add option to pause regrtest to attach a debugger

2011-04-12 Thread Brian Curtin
Brian Curtin br...@python.org added the comment: True. In the end all it does is wait for input not specific to attaching debuggers. How about ``--wait``? I'm used to this functionality being `-x` in another app, so we're iteratively getting better :) --

[issue1692335] Fix exception pickling: Move initial args assignment to BaseException.__new__

2011-04-12 Thread Ben Bass
Ben Bass benpaulb...@googlemail.com added the comment: Perhaps this should be addressed separately, but subprocess.CalledProcessError is subject to this problem (can't be unpickled) (it has separate returncode and cmd attributes, but no args). It's straightforward to conform user-defined

[issue11830] import decimal fails in Turkish locale

2011-04-12 Thread Alexander Belopolsky
Alexander Belopolsky belopol...@users.sourceforge.net added the comment: Shouldn't this be forward ported to 3.3? Even though there is no bug in 3.x, code using an explicit dict is cleaner and more robust than the current code that relies on introspection to find methods that start with

[issue3244] multipart/form-data encoding

2011-04-12 Thread Catalin Iacob
Changes by Catalin Iacob iacobcata...@gmail.com: -- nosy: +catalin.iacob ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3244 ___ ___

[issue11835] python (x64) ctypes incorrectly pass structures parameter

2011-04-12 Thread Abraham Soedjito
New submission from Abraham Soedjito abraham.soedj...@gmail.com: void __cdecl foo(unsigned __int32 a, unsigned __int32 b, unsigned __int32 c, unsigned __int32 d, unsigned __int32 e, unsigned __int32 f,

[issue11815] Simplifications in concurrent.futures

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset bfc586c558ed by Antoine Pitrou in branch '3.2': Issue #11815: Remove dead code in concurrent.futures (since a blocking Queue http://hg.python.org/cpython/rev/bfc586c558ed New changeset eb751e3cb753 by Antoine Pitrou in branch

[issue11827] mention of list2cmdline() in docs of subprocess.Popen

2011-04-12 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11827 ___ ___ Python-bugs-list

[issue11818] tempfile.TemporaryFile example in docs doesnt work

2011-04-12 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Alright, thanks for replying :) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11818 ___ ___

[issue11836] multiprocessing.queues.SimpleQueue is undocumented

2011-04-12 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: multiprocessing.queues.SimpleQueue is undocumented and doesn't appear in multiprocessing.__all__. -- assignee: docs@python components: Documentation, Library (Lib) keywords: easy messages: 133586 nosy: docs@python, pitrou priority:

[issue11815] Simplifications in concurrent.futures

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset c26d015cbde8 by Antoine Pitrou in branch 'default': Issue #11815: Use a light-weight SimpleQueue for the result queue in concurrent.futures.ProcessPoolExecutor. http://hg.python.org/cpython/rev/c26d015cbde8 --

[issue11815] Simplifications in concurrent.futures

2011-04-12 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11815 ___

[issue11830] import decimal fails in Turkish locale

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset f4adc2926bf5 by Raymond Hettinger in branch '2.7': Neaten-up the fix to issue 11830 http://hg.python.org/cpython/rev/f4adc2926bf5 -- ___ Python tracker rep...@bugs.python.org

[issue11830] import decimal fails in Turkish locale

2011-04-12 Thread Raymond Hettinger
Raymond Hettinger raymond.hettin...@gmail.com added the comment: +0 on forward porting -- assignee: rhettinger - belopolsky ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11830 ___

[issue11830] import decimal fails in Turkish locale

2011-04-12 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- nosy: +mark.dickinson, skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11830 ___ ___

[issue11835] python (x64) ctypes incorrectly pass structures parameter

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

[issue11837] smtplib._quote_periods triggers spurious type error in re.sub

2011-04-12 Thread Axel Rau
New submission from Axel Rau axel@chaos1.de: While debugging this http://article.gmane.org/gmane.comp.python.general/687767 email problem, I'm getting: --- File /Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/smtplib.py, line 794, in send_message rcpt_options) File

[issue11837] smtplib._quote_periods triggers spurious type error in re.sub

2011-04-12 Thread Axel Rau
Changes by Axel Rau axel@chaos1.de: -- type: behavior - crash ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11837 ___ ___ Python-bugs-list

[issue11836] multiprocessing.queues.SimpleQueue is undocumented

2011-04-12 Thread Eli Bendersky
Changes by Eli Bendersky eli...@gmail.com: -- nosy: +eli.bendersky ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11836 ___ ___ Python-bugs-list

[issue11835] python (x64) ctypes incorrectly pass structures parameter

2011-04-12 Thread Santoso Wijaya
Santoso Wijaya santoso.wij...@gmail.com added the comment: I can reproduce this with 2.7 and 3.2 64-bit builds on Windows: D:\Temp\cdll\x64\ReleaseC:\Python32\python.exe Python 3.2 (r32:88445, Feb 20 2011, 21:30:00) [MSC v.1500 64 bit (AMD64)] on win 32 Type help, copyright, credits or license

[issue11838] IDLE: make interactive code runnable.

2011-04-12 Thread Terry J. Reedy
New submission from Terry J. Reedy tjre...@udel.edu: One can currently save the contents of a shell window exactly as is, with opening message, prompts, and restarts. This essentially a screenshot of the frame -- fine for an IDLE doc but not useful for rerunning the code. Similarly, if one

[issue11835] python (x64) ctypes incorrectly pass structures parameter

2011-04-12 Thread Santoso Wijaya
Santoso Wijaya santoso.wij...@gmail.com added the comment: 32-bit (2.6) is fine: D:\Temp\cdll\ReleaseC:\Python26\python.exe Python 2.6.6 (r266:84297, Aug 24 2010, 18:46:32) [MSC v.1500 32 bit (Intel)] on win32 Type help, copyright, credits or license for more information. from ctypes import *

[issue10019] json.dumps with indent = 0 not adding newlines

2011-04-12 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com added the comment: Hi, I updated the patch, making one for 2.7, 3.1 and 3.2 (this last one applies cleanly on default too). As of merging simplejson, it's more a matter of porting it to Python 3. I'll drop an email to Bob soon, let's see how it goes.

[issue10019] json.dumps with indent = 0 not adding newlines

2011-04-12 Thread Sandro Tosi
Changes by Sandro Tosi sandro.t...@gmail.com: Added file: http://bugs.python.org/file21631/issue10019-py3.1.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10019 ___

[issue10019] json.dumps with indent = 0 not adding newlines

2011-04-12 Thread Sandro Tosi
Changes by Sandro Tosi sandro.t...@gmail.com: Added file: http://bugs.python.org/file21632/issue10019-py2.7.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10019 ___

[issue10019] json.dumps with indent = 0 not adding newlines

2011-04-12 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com added the comment: Oh, just to say I took the version as of http://code.google.com/p/simplejson/source/detail?r=234 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10019

[issue11835] python (x64) ctypes incorrectly pass structures parameter

2011-04-12 Thread Jonathan White
Changes by Jonathan White jonathan.wh...@ni.com: -- nosy: +jwhitecl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11835 ___ ___ Python-bugs-list

[issue11835] python (x64) ctypes incorrectly pass structures parameter

2011-04-12 Thread Santoso Wijaya
Santoso Wijaya santoso.wij...@gmail.com added the comment: Attaching a ctypes unittest (against 2.7 branch) that will expose this bug in regrtest. -- keywords: +patch Added file: http://bugs.python.org/file21633/test_issue11835.patch ___ Python

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Do those new check finish this issue and should it be closed? If not, what is left? -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9233

[issue11839] argparse: unexpected behavior of default for FileType('w')

2011-04-12 Thread Paolo Elvati
New submission from Paolo Elvati elv...@umich.edu: Hi, when a default is specified for a file argument that is open with writing permission (FileType('w')), the default file is always created even if the argument is specified in the command line. For example he code: import argparse parser

[issue11827] mention of list2cmdline() in docs of subprocess.Popen

2011-04-12 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Attaching a proposed patch for 3.2, focusing only on the documentation for the time being (I realize that deprecation is a loaded issue and should be probably handled in a centralized manner). The patch removes mention of list2cmdline, instead

[issue11806] Missing 2 hyphens in the docs

2011-04-12 Thread Boštjan Mejak
Changes by Boštjan Mejak bostjan.me...@gmail.com: -- nosy: +georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11806 ___ ___

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Sandro Tosi
New submission from Sandro Tosi sandro.t...@gmail.com: Hi, After reading tomo cocoa mail at docs@ I gave a look at c-api/unicode file and fixed some minor editing issues. Regards, Sandro -- assignee: docs@python components: Documentation files: unicode_doc-default.patch keywords:

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com added the comment: In addition, is there a reason for the sorting of UTF-8 UTF-32 UTF-16 and UTF-7 sections? why not alphabetically? Also, several parts of the doc would need paragraph re-indentation (not done in this patch due to clarity). --

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11840 ___ ___

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: Sandro Tosi wrote: Sandro Tosi sandro.t...@gmail.com added the comment: In addition, is there a reason for the sorting of UTF-8 UTF-32 UTF-16 and UTF-7 sections? why not alphabetically? No particular reason. Alphabetical order would

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: Sandro Tosi wrote: New submission from Sandro Tosi sandro.t...@gmail.com: Hi, After reading tomo cocoa mail at docs@ I gave a look at c-api/unicode file and fixed some minor editing issues. Thanks. Looks good ! --

[issue11186] pydoc: HTMLDoc.index() doesn't support PEP 383

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 506cab8fc329 by Victor Stinner in branch 'default': Issue #11186: pydoc ignores a module if its name contains a surrogate character http://hg.python.org/cpython/rev/506cab8fc329 -- nosy: +python-dev

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Sandro Tosi
Sandro Tosi sandro.t...@gmail.com added the comment: On Tue, Apr 12, 2011 at 23:34, Marc-Andre Lemburg rep...@bugs.python.org wrote: Sandro Tosi wrote: Sandro Tosi sandro.t...@gmail.com added the comment: In addition, is there a reason for the sorting of UTF-8 UTF-32 UTF-16 and UTF-7

[issue11186] pydoc: HTMLDoc.index() doesn't support PEP 383

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11186 ___

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg m...@egenix.com added the comment: Sandro Tosi wrote: Sandro Tosi sandro.t...@gmail.com added the comment: On Tue, Apr 12, 2011 at 23:34, Marc-Andre Lemburg rep...@bugs.python.org wrote: Sandro Tosi wrote: Sandro Tosi sandro.t...@gmail.com added the comment: In

[issue11005] Assertion error on RLock._acquire_restore

2011-04-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Here is a patch: Antoine, would you like to review it? -- keywords: +patch nosy: +pitrou Added file: http://bugs.python.org/file21636/rlock_release_save.patch ___ Python tracker

[issue8776] Bytes version of sys.argv

2011-04-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: One year after opening the issue, I don't have any real use case. And there are technical issues to implement this feature, so I prefer just to close this issue. Reopen it if you really want it, but please give an use case ;-)

[issue11747] unified_diff function product incorrect range information

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 707078ca0a77 by Raymond Hettinger in branch '3.1': Issue 11747: Fix output format for context diffs. http://hg.python.org/cpython/rev/707078ca0a77 New changeset e3387295a24f by Raymond Hettinger in branch '3.2': Issue 11747: Fix

[issue11747] unified_diff function product incorrect range information

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 09459397f807 by Raymond Hettinger in branch '2.7': Issue 11747: Fix output format for context diffs. http://hg.python.org/cpython/rev/09459397f807 -- ___ Python tracker

[issue11747] unified_diff function product incorrect range information

2011-04-12 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11747 ___

[issue8448] buildbot: test_subprocess failure (test_no_leaking, Broken pipe)

2011-04-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I did not see this failure since one year. flox saw it 7 months ago. I close this issue because I think that it is fixed. Reopen it if the issue was not fixed. -- resolution: - out of date status: open - closed

[issue8429] buildbot: test_subprocess timeout

2011-04-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I developed the faulthandler module to get more information after a timeout. I close this issue: I already opened more specific issues with more information. -- resolution: - invalid status: open - closed

[issue11806] Missing 2 hyphens in the docs

2011-04-12 Thread Raymond Hettinger
Raymond Hettinger raymond.hettin...@gmail.com added the comment: IMO these are a waste of time and add zero value. Also, the English hyphenation conventions vary depending on who you ask and they vary over time. -- nosy: +rhettinger ___ Python

[issue8431] buildbot: hung on ARM Debian

2011-04-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: There are no more ARM buildbots, so let's close this issue. -- resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8431

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2011-04-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I don't understand why this issue is still open, so let's close it. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8445

[issue11825] faulthandler: failure without threads

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 64e8d371812c by Victor Stinner in branch 'default': Fix #11825: disable regrtest timeout if Python doesn't support threads http://hg.python.org/cpython/rev/64e8d371812c -- nosy: +python-dev

[issue11825] faulthandler: failure without threads

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11825 ___

[issue11779] test_mmap timeout (30 min) on AMD64 Snow Leopard 3.x buildbot

2011-04-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Antoine changed regrtest default timeout to 60 minutes. It should workaround test_mmap timeout, so can we close this issue? -- ___ Python tracker rep...@bugs.python.org

[issue11506] b'' += gives SystemError instead of SyntaxError

2011-04-12 Thread Andreas Stührk
Andreas Stührk andy-pyt...@hammerhartes.de added the comment: Benjamin told me that test_syntax is the right place for the test and indeed, there are quite some literals already tested. -- nosy: +benjamin.peterson Added file: http://bugs.python.org/file21637/issue_11506_v2.patch

[issue9592] Limitations in objects returned by multiprocessing Pool

2011-04-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: Thanks Freek - we're actually discussing some stuff like this in issue9205 as well I'm unable to see the relation between the issue #9205 and the point (3) of this issue (RuntimeError: maximum recursion depth exceeded while

[issue6715] xz compressor support

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- nosy: -haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6715 ___ ___

[issue11506] b'' += gives SystemError instead of SyntaxError

2011-04-12 Thread Santoso Wijaya
Changes by Santoso Wijaya santoso.wij...@gmail.com: -- components: +Interpreter Core type: - behavior versions: +Python 3.1, Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11506

[issue11703] Bug in python = 2.7 with urllib2 fragment

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 3f240a1cd245 by Senthil Kumaran in branch '3.1': Fix Issue11703 - urllib2.geturl() does not return correct url when the original url contains #fragment. Patch Contribution by Santoso Wijaya.

[issue11703] Bug in python = 2.7 with urllib2 fragment

2011-04-12 Thread Senthil Kumaran
Senthil Kumaran sent...@uthcode.com added the comment: It should be noted that the bug surfaced in 2.7 and above due to changes made as part of Issue8280. -- assignee: - orsenthil resolution: - fixed ___ Python tracker rep...@bugs.python.org

[issue11506] b'' += gives SystemError instead of SyntaxError

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 4d9a8e84279a by Benjamin Peterson in branch '3.1': make assigning to a bytes literal a syntax error (closes #11506) http://hg.python.org/cpython/rev/4d9a8e84279a -- nosy: +python-dev resolution: - fixed stage: -

[issue11806] Missing 2 hyphens in the docs

2011-04-12 Thread Boštjan Mejak
Boštjan Mejak bostjan.me...@gmail.com added the comment: There are more of this typos in the same chapter. Just a little below the one of the reported sentence. Check this out... Assuming the Python code above is saved into a file called prog.py, it can be run at the !! command line !! and

[issue11703] Bug in python = 2.7 with urllib2 fragment

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 6e73f75ee034 by Senthil Kumaran in branch '2.7': Fix Issue11703 - urllib2.get_url does not handle fragment in url properly. http://hg.python.org/cpython/rev/6e73f75ee034 -- ___ Python

[issue11703] Bug in python = 2.7 with urllib2 fragment

2011-04-12 Thread Senthil Kumaran
Senthil Kumaran sent...@uthcode.com added the comment: This is fixed in all the codelines. Thanks for the patch, Santoso. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11703

[issue10496] import site failed when Python can't find home directory (sysconfig._getuserbase)

2011-04-12 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: This issue remembers me the issue #6612 (failure if the current directory was removed): the fix was to ignore os.getcwd(). Attached patch ignores os.path.expanduser() error (KeyError) and keeps ~ in the path. Example without HOME

[issue10496] import site failed when Python can't find home directory (sysconfig._getuserbase)

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- keywords: +patch Added file: http://bugs.python.org/file21639/sysconfig_getuserbase.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10496

[issue10496] import site failed when Python can't find home directory (sysconfig._getuserbase)

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: Removed file: http://bugs.python.org/file21639/sysconfig_getuserbase.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10496 ___

[issue10496] import site failed when Python can't find home directory (sysconfig._getuserbase)

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: Added file: http://bugs.python.org/file21640/sysconfig_getuserbase.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10496 ___

[issue11806] Missing 2 hyphens in the docs

2011-04-12 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: 2011/4/12 Boštjan Mejak rep...@bugs.python.org: BoÅ¡tjan Mejak bostjan.me...@gmail.com added the comment: There are more of this typos in the same chapter. Just a little below the one of the reported sentence. Check this out...

[issue10019] json.dumps with indent = 0 not adding newlines

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 8264f68e8251 by R David Murray in branch '2.7': #10019: Fix regression relative to 2.6: add newlines if indent=0 http://hg.python.org/cpython/rev/8264f68e8251 New changeset 4a1048257995 by R David Murray in branch '3.1': #10019: Fix

[issue7484] smtplib: verify breaks with Postfix servers

2011-04-12 Thread Felipe Cruz
Felipe Cruz felipec...@loogica.net added the comment: I've rewrote those patches to 'default' and 2.7 -- nosy: +felipecruz Added file: http://bugs.python.org/file21641/issue7484-py3k.diff ___ Python tracker rep...@bugs.python.org

[issue7484] smtplib: verify breaks with Postfix servers

2011-04-12 Thread Felipe Cruz
Changes by Felipe Cruz felipec...@loogica.net: Added file: http://bugs.python.org/file21642/issue7484-27.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7484 ___

[issue10019] json.dumps with indent = 0 not adding newlines

2011-04-12 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Thanks, Sandro. -- assignee: bob.ippolito - nosy: +r.david.murray resolution: accepted - fixed stage: commit review - committed/rejected status: open - closed ___ Python tracker

[issue3056] Simplify the Integral ABC

2011-04-12 Thread Raymond Hettinger
Raymond Hettinger raymond.hettin...@gmail.com added the comment: I've long since lost interest in this. If anyone wants to push it forward, feel free to re-open. -- resolution: - out of date status: open - closed ___ Python tracker

[issue11718] Teach IDLE's open-module command to find packages

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 27eda70c25b1 by Raymond Hettinger in branch '3.2': Issue 11718: Teach IDLE's open module dialog to find packages. http://hg.python.org/cpython/rev/27eda70c25b1 New changeset 65c39e9eb262 by Raymond Hettinger in branch 'default':

[issue11506] b'' += gives SystemError instead of SyntaxError

2011-04-12 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Thanks all for fixing. This 'silently' crashes IDLE with no message. Just 'poof'. -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11506

[issue11703] Bug in python = 2.7 with urllib2 fragment

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 8ee48ec69844 by Senthil Kumaran in branch '3.1': Update the News for the fix to Issue11703. http://hg.python.org/cpython/rev/8ee48ec69844 -- ___ Python tracker rep...@bugs.python.org

[issue11703] Bug in python = 2.7 with urllib2 fragment

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 502bb809b03b by Senthil Kumaran in branch '2.7': update news in 2.7 for Issue #11703 http://hg.python.org/cpython/rev/502bb809b03b -- ___ Python tracker rep...@bugs.python.org

[issue11718] Teach IDLE's open-module command to find packages

2011-04-12 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset e391f7005b0f by Raymond Hettinger in branch '2.7': Issue 11718: Teach IDLE's open module dialog to find packages. http://hg.python.org/cpython/rev/e391f7005b0f -- ___ Python tracker

[issue7484] smtplib: verify breaks with Postfix servers

2011-04-12 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Thanks for working on this. The tests seem to be missing, as is the line that adds 'clean' to the def, so the patches won't work as is. However, now that I've looked at the patch in more detail, adding a parameter to a public method is

[issue11718] Teach IDLE's open-module command to find packages

2011-04-12 Thread Raymond Hettinger
Changes by Raymond Hettinger raymond.hettin...@gmail.com: -- resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11718 ___

  1   2   >