[issue9670] Exceed Recursion Limit in Thread

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've slightly updated the patch: 1) Increase default stack size to 1MByte 2) Change the preprocessor guard to also trigger on FreeBSD Without this patch I get crashes for 32-bit and 64-bit Intel architectures on OSX 10.6, with this patch those crashes go aw

[issue9670] Exceed Recursion Limit in Thread

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: The attached unittest file triggers the issue until the patch is applied. I'm not sure if I'd be a good idea to add this test as is to the testsuite, given the hard crash when it fails. -- Added file: http://bugs.python.org/file21127/test_issue9670.p

[issue11503] Expand test coverage in posixpath

2011-03-14 Thread Evan Dandrea
Evan Dandrea added the comment: It's probably best to give the fake stats inode numbers, so if the code does fail to check the st_dev fields, it will fail the test. I've updated the patch with this. -- Added file: http://bugs.python.org/file21128/test_posixpath_with_same_device.patc

[issue8746] os.chflags() and os.lchflags() are not built when they should be be

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: Tests for the posix module should go in test_posix. The name 'posix' is used very loosely in python, it is basicly used as an alias for 'unixy'. I'm not too happy about replicating the definition of the flags, as Ned noted the flags are also defined in Lib/s

[issue10907] OS X installer: warn users of buggy Tcl/Tk in OS X 10.6

2011-03-14 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- nosy: +kbk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue10237] failure in Barrier tests

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: Is this issue still valid? The last comment seems to indicate that the issue is fixed and could be closed. -- nosy: +ronaldoussoren ___ Python tracker __

[issue10684] Folders get deleted when trying to change case with shutil.move (case insensitive file systems only)

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: The fallback to copy+remove happens because shutil.move first checks if the destination exists and is a directory, if so it moves the source into the destination, that is, given: os.mkdir('foo') os.mkdir('bar') Then ``shutil.move('foo', 'bar')`` is the same

[issue10684] Folders get deleted when trying to change case with shutil.move (case insensitive file systems only)

2011-03-14 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- keywords: +needs review stage: needs patch -> patch review versions: +Python 3.3 -Python 2.6 ___ Python tracker ___ __

[issue11491] dbm.open(..., flag="n") raises dbm.error if file exists and is rejected by whichdb

2011-03-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset f8d603a2a0af by briancurtin in branch '3.1': Fix #11491. When dbm.open was called with a file which already exists and http://hg.python.org/cpython/rev/f8d603a2a0af -- nosy: +python-dev ___ Python tracke

[issue11505] string.py increased test coverage

2011-03-14 Thread Alicia Arlen
New submission from Alicia Arlen : Started from coverage.py results. Only 6 groups of lines did not have coverage. Since the Template class originated in PEP292, those tests were added in test_pep292.py. All Formatter class tests were added in test_string.py. _invalid test (Lines 89-90):

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

2011-03-14 Thread Nick Coghlan
New submission from Nick Coghlan : b'' += source gives SystemError instead of SyntaxError -- messages: 130881 nosy: ncoghlan priority: normal severity: normal status: open title: b'' += gives SystemError instead of SyntaxError ___ Python tracker

[issue11407] unittest.TestCase.run should return result

2011-03-14 Thread Jonathan Hartley
Jonathan Hartley added the comment: Attached patch fixes this. TestCase.run now returns its TestResult object, regardless of whether it was passed in or created internally. Test assertions added for this. Invoking an instance of TestCase already returned the return value of .run, so the resul

[issue11505] string.py increased test coverage

2011-03-14 Thread Eric Smith
Changes by Eric Smith : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue6584] gzip module has no custom exception

2011-03-14 Thread Filip Gruszczyński
Filip Gruszczyński added the comment: I'll be very happy to fix this after Friday. Thanks for your comments. -- ___ Python tracker ___ ___

[issue11507] Misspelled exercises

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Library (Lib) files: misspelled_exercises.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled exercises type: behavior versions: Python 3.4 Added file: http://bugs.python.org/file21132/misspelled_

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

2011-03-14 Thread David Caro
David Caro added the comment: Of course, the RFC that discusses the MIME-Version Header is RFC-2045 http://www.ietf.org/rfc/rfc2045.txt Extract of the page 8: "Note that the MIME-Version header field is required at the top level of a message. It is not required for each body part of a m

[issue10433] Document unique behavior of 'getgroups' on OSX

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: I do understand the issue, but I'm not sure if I can write it down consisely. I've attached an initial attempt (patch is relative to the default branch, I'll port to 2.7 and 3.2 if it looks OK) -- keywords: +needs review, patch Added file: http://bug

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2011-03-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: Could you add me as a member or admin on the mrab-regex-hg project? I've got a few things I want to fix in the code as I start looking into the state of this module. gpsmith at gmail dot com is my google account. There are some fixes in the upstream pytho

[issue7900] posix.getgroups() failure on Mac OS X

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm closing this issue again, the current behavior is intended (as it mirrors platform behavior). -- status: open -> closed ___ Python tracker ___

[issue11500] Fixes failing urllib2 proxy tests on OSX

2011-03-14 Thread Scott Wilson
Scott Wilson added the comment: This patch adds test coverage to the osx proxy bypass code and includes the previous one line patch. Also adds a test for the proxy_no=* case. -- Added file: http://bugs.python.org/file21134/proxy_bypass_osx_w_tests.diff ___

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

2011-03-14 Thread Raymond Hettinger
Raymond Hettinger added the comment: > We seem to be in the worst of both worlds right now > as I've generated and stored a lot of json that can > not be read back in This is unfortunate. The dumps() should have never worked in the first place. I don't think that loads() should be changed t

[issue11282] 3.3 unittest document not kept consist with code

2011-03-14 Thread Michael Foord
Michael Foord added the comment: Those methods should *not* have been removed. I thought we had discussed this. It is my fault for allowing the error in the 3.2 docs to remain. -- ___ Python tracker _

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

2011-03-14 Thread Brian
Brian added the comment: On Mon, Mar 14, 2011 at 4:09 PM, Raymond Hettinger wrote: > > Raymond Hettinger added the comment: > > > We seem to be in the worst of both worlds right now > > as I've generated and stored a lot of json that can > > not be read back in > > This is unfortunate. The du

[issue11508] Virtual Interfaces cause uuid._find_mac to raise a ValueError under Linux

2011-03-14 Thread Kent Frazier
New submission from Kent Frazier : If a virtual interface is present in the system, such as if the user is connected to a VPN, then there may be entries in ifconfig that do not conform to the expected `HWAddr 01:23:45:67:89:ab` MAC address format expected by uuid._find_mac. For instance, under

[issue11491] dbm.open(..., flag="n") raises dbm.error if file exists and is rejected by whichdb

2011-03-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset ec8d64396be9 by briancurtin in branch '3.2': Fix #11491. When dbm.open was called with a file which already exists and http://hg.python.org/cpython/rev/ec8d64396be9 New changeset 0515206e36ed by briancurtin in branch 'default': Fix #11491. When dbm

[issue11501] distutils.archive_util should handle absence of zlib module

2011-03-14 Thread Natalia B. Bidart
Natalia B. Bidart added the comment: Attaching patch that performs the following: * skip all the distutils tests that need zlib in order to run properly. * add a new test (test_make_zipfile_no_zlib) to ensure that make_zipfile uses the compression option from zipfile module that works without

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
New submission from Denver Coneybeare : As part of the CPython sprints at PyCon 2011 I am improving the unit test coverage for the fileinput module. Primarily, this will be adding unit tests for the global functions, which right now are almost completely untested. I will be adding incrementa

[issue11501] distutils.archive_util should handle absence of zlib module

2011-03-14 Thread Éric Araujo
Éric Araujo added the comment: Thanks. One question: why not using a clause like “if zlib is not None” instead of catching a RuntimeError? The if test looks more specific to me, whereas the RuntimeError might come from something else, and thus shouldn’t always e ignored. In the patch funct

[issue10775] assertRaises as a context manager should accept a 'msg' keyword argument.

2011-03-14 Thread Nick Coghlan
Nick Coghlan added the comment: Aren't such use cases already covered by assertRaisesRegex? -- nosy: +ncoghlan ___ Python tracker ___ ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21139/fileinput_unittests_v2.patch ___ Python tracker ___ ___ Python-bug

[issue11501] distutils.archive_util should handle absence of zlib module

2011-03-14 Thread Natalia B. Bidart
Natalia B. Bidart added the comment: Hi Éric, Thanks for looking at the patch. I'm not using "if zlib is not None" since the archive_utils module never explicitly imports zlib. Only the zipfile module imports zlib and raises RuntimeError if not available (as per http://docs.python.org/librar

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

2011-03-14 Thread Andreas Stührk
Andreas Stührk added the comment: Seems like like a case for "Bytes_kind" is missing in `set_context()`. Attached is a patch, without a test though. -- keywords: +patch nosy: +Trundle Added file: http://bugs.python.org/file21140/issue_11506.patch __

[issue11496] test_readline fails when readline was installed after running configure (and was not re-run)

2011-03-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset a89d654adaa2 by R David Murray in branch '3.2': #11496: skip history test if clear_history is not available. http://hg.python.org/cpython/rev/a89d654adaa2 New changeset ecc176488349 by R David Murray in branch 'default': Merge #11496 from 3.2. http

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

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue11496] test_readline fails when readline was installed after running configure (and was not re-run)

2011-03-14 Thread R. David Murray
R. David Murray added the comment: Thanks. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: crash -> behavior versions: +Python 3.2 ___ Python tracker ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21141/fileinput_unittests_v3.patch ___ Python tracker ___ ___ Python-bug

[issue11501] distutils.archive_util should handle absence of zlib module

2011-03-14 Thread Natalia B. Bidart
Natalia B. Bidart added the comment: * Added change notice to Misc/NEWS. * changed patch method implementation so AttributeError is raised when trying to patch a non-existent attribute for an object (see Éric's comment). -- Added file: http://bugs.python.org/file21142/pycon-issue11501.

[issue11508] Virtual Interfaces cause uuid._find_mac to raise a ValueError under Linux

2011-03-14 Thread Kent Frazier
Changes by Kent Frazier : Removed file: http://bugs.python.org/file21136/uuid_ValueError_fix.diff ___ Python tracker ___ ___ Python-bugs-list

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

2011-03-14 Thread R. David Murray
R. David Murray added the comment: Yes, if it is not actually an RFC non-compliance I'd rather not backport it, but I'm not averse to changing it. I'm open to argument about backporting though...if you know of spam filters that actually do count it, let me know. -- _

[issue11508] Virtual Interfaces cause uuid._find_mac to raise a ValueError under Linux

2011-03-14 Thread Kent Frazier
Kent Frazier added the comment: I was mistaken about the issues with mocking. I am submitting a new patch with a test included. -- Added file: http://bugs.python.org/file21143/uuid_ValueError_fix.diff ___ Python tracker

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2011-03-14 Thread Matthew Barnett
Matthew Barnett added the comment: @Gregory: I've added you to the project. I'm currently trying to fix a problem with iterators shared across threads. As a temporary measure, the current release on PyPI doesn't enable multithreading for them. The mrab-regex-hg project doesn't have those sou

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2011-03-14 Thread Gregory P. Smith
Gregory P. Smith added the comment: Okay. Can you push your setup.py and README and such as well? Your pypi release tarballs should match the hg repo and ideally include a mention of what hg revision they are generated from. :) -gps On Mon, Mar 14, 2011 at 5:25 PM, Matthew Barnett wrote: > >

[issue11505] string.py increased test coverage

2011-03-14 Thread Nick Coghlan
Changes by Nick Coghlan : -- assignee: -> ncoghlan nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue10775] assertRaises as a context manager should accept a 'msg' keyword argument.

2011-03-14 Thread R. David Murray
R. David Murray added the comment: How does assertRaisesRegex address the use case in issue 3583? -- ___ Python tracker ___ ___ Pytho

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

2011-03-14 Thread Nadeem Vawda
Nadeem Vawda added the comment: > Well, I would personally advocate not re-adding a license boilerplate, > since it doesn't serve a purpose (nearly all of Python is freely usable > under the PSF License, and the authors are documented by version control). That sounds sensible to me. I'll see wh

[issue11477] Bug in code dispatching based on internal slots

2011-03-14 Thread Armin Rigo
Armin Rigo added the comment: Nick: we get a TypeError anyway if we do unsupported things like "lst += None". It seems to me that you are confusing levels, unless you can point out a specific place in the documentation that would say "never return NotImplemented from __iadd__(), __imul__(),

[issue11502] assignment of winreg module to another name causes NameError

2011-03-14 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: It's a duplicate of issue #11276. -- nosy: +Arfrever ___ Python tracker ___ __

[issue10617] Collections ABCs can’t be linked to

2011-03-14 Thread Ezio Melotti
Ezio Melotti added the comment: Apparently there's no way to change the text generated by the "class" directive, so it's not possible to use it in the table without having the "class" before the names. The alternatives are: 1) define these classes normally instead of or in addition to the tab

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21145/fileinput_unittests_v5.patch ___ Python tracker ___ ___ Python-bug

[issue11254] distutils doesn't byte-compile .py files to __pycache__ during installation

2011-03-14 Thread Jeff Ramnani
Jeff Ramnani added the comment: This patch applies cleanly as of rev 89af3880ca57 on branch default. After applying the patch, I had two unit test failures when running, "/python.exe -m test -v test_distutils", on OS X 10.6. The tests were failing because they were not looking in the __pycach

[issue11502] assignment of winreg module to another name causes NameError

2011-03-14 Thread Jason R. Coombs
Jason R. Coombs added the comment: Good call. Closing. -- resolution: -> duplicate status: open -> closed ___ Python tracker ___ ___

[issue11491] dbm.open(..., flag="n") raises dbm.error if file exists and is rejected by whichdb

2011-03-14 Thread Brian Curtin
Brian Curtin added the comment: The 3.x side of things is taken care of. Still need to see if there is any issue on 2.7 where things are organized differently and dbm is in C. -- assignee: -> brian.curtin stage: -> commit review ___ Python tracker

[issue11276] 2to3: imports fixer doesn't update references to modules specified without attributes

2011-03-14 Thread Jason R. Coombs
Jason R. Coombs added the comment: This bug affects distutils2. See #11502. -- nosy: +jaraco ___ Python tracker ___ ___ Python-bugs-l

[issue11492] email.header.Header doesn't fold headers

2011-03-14 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry, r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue10617] Collections ABCs can’t be linked to

2011-03-14 Thread Raymond Hettinger
Raymond Hettinger added the comment: Georg, do you have a recommendation? -- assignee: docs@python -> georg.brandl nosy: +rhettinger ___ Python tracker ___ _

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21147/fileinput_unittests_v6.patch ___ Python tracker ___ ___ Python-bug

[issue11510] Peephole breaks set unpacking

2011-03-14 Thread Eugene Toder
New submission from Eugene Toder : Since the time 'x in set' optimization was added to peephole it has the following bug with set unpacking: >>> def foo(x,y): a,b = {x,y} return a,b >>> dis(foo) 2 0 LOAD_FAST0 (x) 3 LOAD_FAST

[issue11500] Fixes failing urllib2 proxy tests on OSX

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: Patch looks great, I'll commit shortly. Thanks for the patch. -- nosy: +ronaldoussoren ___ Python tracker ___ ___

[issue11511] Proposal for exposing proxy bypass settings in ProxyHandler

2011-03-14 Thread Scott Wilson
New submission from Scott Wilson : Several proxy tests in test_urllib2_localnet were failing for me on osx due to spurious interference of my configured proxy settings. Attaching a patch that proposes exposing the proxy bypass settings in the same manner as the proxies when constructing Proxy

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21149/fileinput_unittests_v7.patch ___ Python tracker ___ ___ Python-bug

[issue11503] Expand test coverage in posixpath

2011-03-14 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +needs review nosy: +brian.curtin stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Removed file: http://bugs.python.org/file21138/fileinput_unittests_v1.patch ___ Python tracker ___ ___ Python-b

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21150/fileinput_unittests_v8.patch ___ Python tracker ___ ___ Python-bug

[issue11510] Peephole breaks set unpacking

2011-03-14 Thread Andreas Stührk
Changes by Andreas Stührk : -- nosy: +Trundle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue11492] email.header.Header doesn't fold headers

2011-03-14 Thread R. David Murray
R. David Murray added the comment: It exists, but clearly it is broken. I'll look in to it. -- assignee: -> r.david.murray stage: -> needs patch type: -> behavior versions: +Python 3.1, Python 3.2, Python 3.3 ___ Python tracker

[issue11500] Fixes failing urllib2 proxy tests on OSX

2011-03-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 682903e066db by Ronald Oussoren in branch '3.1': Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified IP addresses in the proxy exception list http://hg.python.org/cpython/rev/682903e066db New changeset aafb0fed1811 by Ronal

[issue11500] Fixes failing urllib2 proxy tests on OSX

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: The patch got merged. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21151/fileinput_unittests_v9.patch ___ Python tracker ___ ___ Python-bug

[issue11505] string.py increased test coverage

2011-03-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 10c56e7ceb72 by Nick Coghlan in branch 'default': Close #11505: Improve string.py coverage http://hg.python.org/cpython/rev/10c56e7ceb72 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: open -> closed __

[issue11407] unittest.TestCase.run should return result

2011-03-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset b0b7d1d2354c by Michael Foord in branch 'default': Closes issue 11407. TestCase.run returns the result object used or created http://hg.python.org/cpython/rev/b0b7d1d2354c -- nosy: +python-dev resolution: -> fixed stage: -> committed/reje

[issue11477] Bug in code dispatching based on internal slots

2011-03-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: I think Nick's point, and one I agree with, is (or amounts to): 'somelist += ob' == 'somelist.__iadd__(ob)' == 'somelist.extend(ob)' == 'somelist[len(somelist):len(somelist)]=ob' is defined and should be implemented for all somelist,ob pairs. If ob is an it

[issue11512] adding test suite for cgitb

2011-03-14 Thread Robbie Clemons
New submission from Robbie Clemons : Added a test suite for cgitb that provides 75% test coverage according to coverage.py. -- components: Tests files: test_cgitb.diff keywords: patch messages: 130926 nosy: brian.curtin, robquad priority: normal severity: normal status: open title: addi

[issue9344] please add posix.getgrouplist()

2011-03-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: Patch looks good, but this likely runs into the same problem as #7900: the user can be a member of more than NGROUPS_MAX on OSX. I'll test this tomorrow (by creating a temporary user that is a member of more than 16 groups). --

[issue8158] Docstring of optparse.OptionParser incomplete

2011-03-14 Thread Jeff Ramnani
Jeff Ramnani added the comment: I've read through the doc and the code. All keyword arguments for OptionParser.__init__() are in the documentation for branches 2.7 and default (as of ecc176488349). Does that mean this issue can be closed? -- nosy: +jramnani

[issue11504] test_subprocess failure

2011-03-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: There seems to be another kind, sporadic, of failure on the same buildbot: test test_subprocess failed -- Traceback (most recent call last): File "/home2/buildbot2/slave/3.x.loewis-parallel/build/Lib/test/test_subprocess.py", line 626, in test_wait_timeout

[issue2650] re.escape should not escape underscore

2011-03-14 Thread Ezio Melotti
Ezio Melotti added the comment: re.escape and its tests can be refactored in 2.7/3.1, the '_' can be added to the list of chars that are not escaped in 3.3. I'll put together a patch and fix this unless someone thinks that the '_' should be escaped in 3.3 too. -- assignee: -> ezio.m

[issue8158] Docstring of optparse.OptionParser incomplete

2011-03-14 Thread R. David Murray
R. David Murray added the comment: It looks to me like description is still missing from the docstring, at least on python3 tip. -- ___ Python tracker ___ __

[issue11513] Infinite recursion around raising an exception in tarfile

2011-03-14 Thread Evan Dandrea
New submission from Evan Dandrea : Using Python tip from Sunday, I noticed that tarfile does not elegantly handle ENOENT by raising a single exception: >>> tarfile.TarFile.gzopen('fdsfd', 'r') Traceback (most recent call last): File "/home/evan/hg/cpython/Lib/tarfile.py", line 1808, in gzopen

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21153/fileinput_unittests_v10.patch ___ Python tracker ___ ___ Python-bu

[issue11511] Proposal for exposing proxy bypass settings in ProxyHandler

2011-03-14 Thread R. David Murray
Changes by R. David Murray : -- stage: -> patch review type: behavior -> feature request ___ Python tracker ___ ___ Python-bugs-list

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21154/fileinput_unittests_v11.patch ___ Python tracker ___ ___ Python-bu

[issue11514] Misspelled access

2011-03-14 Thread Piotr Kasprzyk
New submission from Piotr Kasprzyk : Misspelled: access -- components: Extension Modules files: misspelled_access.patch keywords: patch messages: 130933 nosy: kwadrat priority: normal severity: normal status: open title: Misspelled access type: behavior versions: Python 3.3 Added file: h

[issue11515] Misspelled actually

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Library (Lib) files: misspelled_actually.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled actually versions: Python 3.3 Added file: http://bugs.python.org/file21156/misspelled_actually.patch _

[issue11514] Misspelled access

2011-03-14 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue11510] Peephole breaks set unpacking

2011-03-14 Thread Santoso Wijaya
Santoso Wijaya added the comment: Looks like changeset ed8b0ee1c531 (svn r77543) broke it. -- nosy: +santa4nt ___ Python tracker ___

[issue11516] Misspelled additionally

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Windows files: misspelled_additionally.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled additionally type: behavior versions: Python 3.3 Added file: http://bugs.python.org/file21157/misspelled_

[issue11517] Misspelled

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- assignee: ronaldoussoren components: Extension Modules, Macintosh nosy: kwadrat, ronaldoussoren priority: normal severity: normal status: open title: Misspelled type: behavior ___ Python tracker

[issue11517] Misspelled aforementioned

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: -Macintosh keywords: +patch title: Misspelled -> Misspelled aforementioned versions: +Python 3.3 Added file: http://bugs.python.org/file21158/misspelled_aforementioned.patch ___ Python tracker

[issue11518] Misspelled algorithm 2

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Library (Lib) files: misspelled_algorithm2.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled algorithm 2 type: behavior versions: Python 3.3 Added file: http://bugs.python.org/file21159/misspell

[issue11519] Misspelled algorithm

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Library (Lib) files: misspelled_algorithm.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled algorithm type: behavior versions: Python 3.3 Added file: http://bugs.python.org/file21160/misspelled_

[issue11520] Misspelled alignment 2

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Library (Lib) files: misspelled_alignment2.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled alignment 2 type: behavior versions: Python 3.3 Added file: http://bugs.python.org/file21161/misspell

[issue11521] Misspelled alignment3

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- nosy: kwadrat priority: normal severity: normal status: open title: Misspelled alignment3 type: behavior ___ Python tracker ___ ___

[issue11521] Misspelled alignment3

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: +Library (Lib) keywords: +patch versions: +Python 3.3 Added file: http://bugs.python.org/file21162/misspelled_alignment3.patch ___ Python tracker _

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare : Added file: http://bugs.python.org/file21163/fileinput_unittests_v12.patch ___ Python tracker ___ ___ Python-bu

[issue11521] Misspelled alignment3

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: +Extension Modules -Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue11522] Misspelled alignment 4

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Extension Modules files: misspelled_alignment4.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled alignment 4 type: behavior versions: Python 3.3 Added file: http://bugs.python.org/file21164/miss

[issue11523] Misspelled alignment 5

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Extension Modules files: misspelled_alignment5.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled alignment 5 type: behavior versions: Python 3.3 Added file: http://bugs.python.org/file21165/miss

[issue11524] Misspelled alignment 6

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Extension Modules files: misspelled_alignment6.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled alignment 6 type: behavior versions: Python 3.3 Added file: http://bugs.python.org/file21166/miss

[issue11525] Misspelled alignment

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Extension Modules files: misspelled_alignment.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled alignment type: behavior versions: Python 3.3 Added file: http://bugs.python.org/file21167/misspel

[issue11526] Misspelled alignment

2011-03-14 Thread Piotr Kasprzyk
Changes by Piotr Kasprzyk : -- components: Extension Modules files: misspelled_alignment.patch keywords: patch nosy: kwadrat priority: normal severity: normal status: open title: Misspelled alignment type: behavior versions: Python 3.3 Added file: http://bugs.python.org/file21168/misspel

<    1   2   3   4   >