[issue7484] smtplib: verify breaks with Postfix servers

2011-04-12 Thread Catalin Iacob
Changes by Catalin Iacob : -- nosy: +catalin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

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

2011-04-12 Thread Torsten Becker
Torsten Becker 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". -- Added file: http://bugs

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

2011-04-12 Thread Torsten Becker
Changes by Torsten Becker : Added file: http://bugs.python.org/file21627/issue-11828-error-msg-tests.patch ___ Python tracker ___ ___ Python-b

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

2011-04-12 Thread Torsten Becker
Changes by Torsten Becker : Removed file: http://bugs.python.org/file21623/issue-8282-error-message-tests.patch ___ Python tracker ___ ___ Py

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread anatoly techtonik
New submission from anatoly techtonik : 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: Documentation messages:

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread anatoly techtonik
anatoly techtonik added the comment: Other Windows prefixes are probably wrong too. -- ___ Python tracker ___ ___ Python-bugs-list ma

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

2011-04-12 Thread Ezio Melotti
Ezio Melotti 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 commits: unicodeobjects.c:

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread Brian Curtin
Changes by Brian Curtin : -- stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

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

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

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread anatoly techtonik
anatoly techtonik added the comment: How about 'easy' keyword? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread Ezio Melotti
Changes by Ezio Melotti : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread R. David Murray
R. David Murray 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 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 ___

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

2011-04-12 Thread Torsten Becker
Torsten Becker 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 function name, and another

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

2011-04-12 Thread Roundup Robot
Roundup Robot 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 tracker

[issue11834] wrong module installation dir on Windows

2011-04-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

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

2011-04-12 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> ezio.melotti versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

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

2011-04-12 Thread Brian Curtin
Brian Curtin 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 :) -- ___ Pyth

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

2011-04-12 Thread Ben Bass
Ben Bass 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 Exceptions to including .args a

[issue11830] "import decimal" fails in Turkish locale

2011-04-12 Thread Alexander Belopolsky
Alexander Belopolsky 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 '_round_'. -- nosy: +belopols

[issue3244] multipart/form-data encoding

2011-04-12 Thread Catalin Iacob
Changes by Catalin Iacob : -- nosy: +catalin.iacob ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

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

2011-04-12 Thread Abraham Soedjito
New submission from Abraham Soedjito : void __cdecl foo(unsigned __int32 a, unsigned __int32 b, unsigned __int32 c, unsigned __int32 d, unsigned __int32 e, unsigned __int32 f, unsigned __int32 g)

[issue11815] Simplifications in concurrent.futures

2011-04-12 Thread Roundup Robot
Roundup Robot 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 'default': Issue #1181

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

2011-04-12 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11818] tempfile.TemporaryFile example in docs doesnt work

2011-04-12 Thread Éric Araujo
Éric Araujo added the comment: Alright, thanks for replying :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue11836] multiprocessing.queues.SimpleQueue is undocumented

2011-04-12 Thread Antoine Pitrou
New submission from Antoine Pitrou : 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: normal severity: n

[issue11815] Simplifications in concurrent.futures

2011-04-12 Thread Roundup Robot
Roundup Robot 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 : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue11830] "import decimal" fails in Turkish locale

2011-04-12 Thread Roundup Robot
Roundup Robot 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 __

[issue11830] "import decimal" fails in Turkish locale

2011-04-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: +0 on forward porting -- assignee: rhettinger -> belopolsky ___ Python tracker ___ ___ Python-bu

[issue11830] "import decimal" fails in Turkish locale

2011-04-12 Thread R. David Murray
Changes by R. David Murray : -- nosy: +mark.dickinson, skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

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

2011-04-12 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- nosy: +santa4nt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

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

2011-04-12 Thread Axel Rau
New submission from Axel Rau : 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 "/Library/Frame

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

2011-04-12 Thread Axel Rau
Changes by Axel Rau : -- type: behavior -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue11836] multiprocessing.queues.SimpleQueue is undocumented

2011-04-12 Thread Eli Bendersky
Changes by Eli Bendersky : -- nosy: +eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

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

2011-04-12 Thread Santoso Wijaya
Santoso Wijaya added the comment: I can reproduce this with 2.7 and 3.2 64-bit builds on Windows: D:\Temp\cdll\x64\Release>C:\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" for more informa

[issue11838] IDLE: make interactive code runnable.

2011-04-12 Thread Terry J. Reedy
New submission from Terry J. Reedy : 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 pastes in interactiv

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

2011-04-12 Thread Santoso Wijaya
Santoso Wijaya added the comment: 32-bit (2.6) is fine: D:\Temp\cdll\Release>C:\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 * >>> libcdll =

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

2011-04-12 Thread Sandro Tosi
Sandro Tosi 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. -- nosy: +sandro.tosi

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

2011-04-12 Thread Sandro Tosi
Changes by Sandro Tosi : Added file: http://bugs.python.org/file21631/issue10019-py3.1.patch ___ Python tracker ___ ___ Python-bugs-list maili

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

2011-04-12 Thread Sandro Tosi
Changes by Sandro Tosi : Added file: http://bugs.python.org/file21632/issue10019-py2.7.patch ___ Python tracker ___ ___ Python-bugs-list maili

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

2011-04-12 Thread Sandro Tosi
Sandro Tosi 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 ___ __

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

2011-04-12 Thread Jonathan White
Changes by Jonathan White : -- nosy: +jwhitecl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

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

2011-04-12 Thread Santoso Wijaya
Santoso Wijaya 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 tracker

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

2011-04-12 Thread Terry J. Reedy
Terry J. Reedy 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 ___ ___

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

2011-04-12 Thread Paolo Elvati
New submission from Paolo Elvati : 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 = argparse.Argume

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

2011-04-12 Thread Eli Bendersky
Eli Bendersky 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 explaining its i

[issue11806] Missing 2 hyphens in the docs

2011-04-12 Thread Boštjan Mejak
Changes by Boštjan Mejak : -- nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Sandro Tosi
New submission from Sandro Tosi : 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: patch messages: 133600 nos

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Sandro Tosi
Sandro Tosi 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 : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Sandro Tosi wrote: > > Sandro Tosi 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 be just as good. Note that such

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Sandro Tosi wrote: > > New submission from Sandro Tosi : > > 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 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 added the comment: On Tue, Apr 12, 2011 at 23:34, Marc-Andre Lemburg wrote: > Sandro Tosi wrote: >> >> Sandro Tosi 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

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

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue11840] Improvements to c-api/unicode documentation

2011-04-12 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Sandro Tosi wrote: > > Sandro Tosi added the comment: > > On Tue, Apr 12, 2011 at 23:34, Marc-Andre Lemburg > wrote: >> Sandro Tosi wrote: >>> >>> Sandro Tosi added the comment: >>> >>> In addition, is there a reason for the sorting of UTF-8 UTF-32 UTF-

[issue11005] Assertion error on RLock._acquire_restore

2011-04-12 Thread STINNER Victor
STINNER Victor 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 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 ;-) -- resolution: -> wont

[issue11747] unified_diff function product incorrect range information

2011-04-12 Thread Roundup Robot
Roundup Robot 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 output format for c

[issue11747] unified_diff function product incorrect range information

2011-04-12 Thread Roundup Robot
Roundup Robot 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 : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing lis

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

2011-04-12 Thread STINNER Victor
STINNER Victor 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 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 ___ Pyt

[issue11806] Missing 2 hyphens in the docs

2011-04-12 Thread Raymond Hettinger
Raymond Hettinger 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 tracker

[issue8431] buildbot: hung on ARM Debian

2011-04-12 Thread STINNER Victor
STINNER Victor added the comment: There are no more ARM buildbots, so let's close this issue. -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___

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

2011-04-12 Thread STINNER Victor
STINNER Victor added the comment: I don't understand why this issue is still open, so let's close it. -- status: open -> closed ___ Python tracker ___ ___

[issue11825] faulthandler: failure without threads

2011-04-12 Thread Roundup Robot
Roundup Robot 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 ___ Python tr

[issue11825] faulthandler: failure without threads

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

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

2011-04-12 Thread STINNER Victor
STINNER Victor 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

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

2011-04-12 Thread Andreas Stührk
Andreas Stührk 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 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 calling a Python object // Wind

[issue6715] xz compressor support

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: -haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

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

2011-04-12 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- components: +Interpreter Core type: -> behavior versions: +Python 3.1, Python 3.2, Python 3.3 ___ Python tracker ___ _

[issue11703] Bug in python >= 2.7 with urllib2 fragment

2011-04-12 Thread Roundup Robot
Roundup Robot 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. http://hg.python.org/cpython/rev/3f240a1cd245 --

[issue11703] Bug in python >= 2.7 with urllib2 fragment

2011-04-12 Thread Senthil Kumaran
Senthil Kumaran 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 _

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

2011-04-12 Thread Roundup Robot
Roundup Robot 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: -> committed/rejected statu

[issue11806] Missing 2 hyphens in the docs

2011-04-12 Thread Boštjan Mejak
Boštjan Mejak 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 provides useful help messa

[issue11703] Bug in python >= 2.7 with urllib2 fragment

2011-04-12 Thread Roundup Robot
Roundup Robot 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 tracker

[issue11703] Bug in python >= 2.7 with urllib2 fragment

2011-04-12 Thread Senthil Kumaran
Senthil Kumaran added the comment: This is fixed in all the codelines. Thanks for the patch, Santoso. -- status: open -> closed ___ Python tracker ___ __

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

2011-04-12 Thread STINNER Victor
STINNER Victor 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 var and with an non existent

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

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor : -- keywords: +patch Added file: http://bugs.python.org/file21639/sysconfig_getuserbase.patch ___ Python tracker ___ __

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

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file21639/sysconfig_getuserbase.patch ___ Python tracker ___ ___ Python-bugs-

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

2011-04-12 Thread STINNER Victor
Changes by STINNER Victor : Added file: http://bugs.python.org/file21640/sysconfig_getuserbase.patch ___ Python tracker ___ ___ Python-bugs-li

[issue11806] Missing 2 hyphens in the docs

2011-04-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2011/4/12 Boštjan Mejak : > > BoÅ¡tjan Mejak 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 pr

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

2011-04-12 Thread Roundup Robot
Roundup Robot 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 regression rela

[issue7484] smtplib: verify breaks with Postfix servers

2011-04-12 Thread Felipe Cruz
Felipe Cruz 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 __

[issue7484] smtplib: verify breaks with Postfix servers

2011-04-12 Thread Felipe Cruz
Changes by Felipe Cruz : Added file: http://bugs.python.org/file21642/issue7484-27.diff ___ Python tracker ___ ___ Python-bugs-list mailing lis

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

2011-04-12 Thread R. David Murray
R. David Murray 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 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 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': Issue 11718: Teach

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

2011-04-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks all for fixing. This 'silently' crashes IDLE with no message. Just 'poof'. -- nosy: +terry.reedy ___ Python tracker ___

[issue11703] Bug in python >= 2.7 with urllib2 fragment

2011-04-12 Thread Roundup Robot
Roundup Robot 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 __

[issue11703] Bug in python >= 2.7 with urllib2 fragment

2011-04-12 Thread Roundup Robot
Roundup Robot 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

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

2011-04-12 Thread Roundup Robot
Roundup Robot 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 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 not something we can

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

2011-04-12 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue11806] Missing 2 hyphens in the docs

2011-04-12 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue11823] disassembly needs argument counts on calls with keyword args

2011-04-12 Thread Raymond Hettinger
Raymond Hettinger added the comment: Looks good. Please apply. -- assignee: -> belopolsky resolution: -> accepted title: disassembly needs to argument counts on calls with keyword args -> disassembly needs argument counts on calls with keyword args type: feature request -> behavior

  1   2   >