[issue11510] Peephole breaks set unpacking

2011-03-15 Thread Raymond Hettinger
Raymond Hettinger added the comment: See attached. -- keywords: +patch Added file: http://bugs.python.org/file21208/peep.diff ___ Python tracker ___

[issue11549] Rewrite peephole to work on AST

2011-03-15 Thread Daniel Urban
Changes by Daniel Urban : -- nosy: +durban ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue6584] gzip module has no custom exception

2011-03-15 Thread Filip Gruszczyński
Filip Gruszczyński added the comment: I had some time today, so I managed to fix the patch. I hope now everything is ok. -- Added file: http://bugs.python.org/file21209/6584_3.patch ___ Python tracker

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

2011-03-15 Thread Éric Araujo
Éric Araujo added the comment: > I'm not using "if zlib is not None" since the archive_utils module > never explicitly imports zlib. Well, you can import zlib in that module too to detect in advance whether zipfile will work. -- ___ Python tracker

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

2011-03-15 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the test. The patch is minimal and makes distutils work correctly with the new pyc handling in 3.2+, so I will apply it in a few days unless Tarek disagrees. -- assignee: tarek -> eric.araujo stage: patch review -> commit review

[issue11553] Docs for: import, packages, site.py, .pth files

2011-03-15 Thread Graham Wideman
New submission from Graham Wideman : The overall scope of this issue is that current Python documentation gives vague, sometimes incorrect, information about the set of Python features involved in modularizing functionality. This issue presents an obstacle to programmers making smooth transit

[issue11549] Rewrite peephole to work on AST

2011-03-15 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +dmalcolm, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue11165] Document PyEval_Call* functions

2011-03-15 Thread Nick Coghlan
Nick Coghlan added the comment: There may be some legitimate use cases when embedding Python and you *know* that the checks performed by the PyObject_* versions aren't needed. It may also be historical - the PyEval versions may predate the PyObject ones. -- __

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

2011-03-15 Thread Nick Coghlan
Nick Coghlan added the comment: Michael pointed out that I had completely missed the point of what the "msg" argument was about. Sorry for the noise. -- ___ Python tracker ___

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

2011-03-15 Thread Natalia B. Bidart
Natalia B. Bidart added the comment: On Tue, Mar 15, 2011 at 7:15 AM, Éric Araujo wrote: > > Éric Araujo added the comment: > >> I'm not using "if zlib is not None" since the archive_utils module >> never explicitly imports zlib. > > Well, you can import zlib in that module too to detect in ad

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

2011-03-15 Thread SilentGhost
SilentGhost added the comment: > I left a comment on the review. You need to publish your comment if you want others to see it. -- nosy: +SilentGhost ___ Python tracker ___

[issue11550] Fix ResourceWarning in test_pulldom

2011-03-15 Thread Andreas Stührk
Andreas Stührk added the comment: Any reason why the patch removes the `list()` calls? Without them, no parsing happens at all. -- nosy: +Trundle ___ Python tracker ___ ___

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

2011-03-15 Thread Brian Curtin
Brian Curtin added the comment: I showed robquad how to do the review stuff at PyCon but I forgot about the publish part. Robbie, if you hit "Publish + Mail Comments" near the top of the page after you've left comments, it'll send them out. What he noticed was that changing to callable_obj i

[issue11289] smtplib context manager

2011-03-15 Thread SilentGhost
SilentGhost added the comment: A couple more minor issues: 1. Double space required at the beginning of the "Here is a ..." sentence in Doc/library/smtplib.rst 2. in __exit__ method: "msg" is the variable name assigned from docmd('QUIT') but "errmsg" is used when raising exception 3. in test

[issue11243] email/message.py str conversion

2011-03-15 Thread Steffen Daode Nurpmeso
Steffen Daode Nurpmeso added the comment: On Tue, Mar 15, 2011 at 04:21:24AM +, R. David Murray wrote: > Please test and let me know if it works; it should, since the code patch is > very close to the one you suggested. ;-) Hello David, hope you have a good time at Pycon! (Just Googled, w

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

2011-03-15 Thread Natalia B. Bidart
Natalia B. Bidart added the comment: Attaching a new patch with latest changes from trunk merged in (conflicts resolved). -- Added file: http://bugs.python.org/file21211/pycon-issue11501.patch ___ Python tracker

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Nick Coghlan added the comment: Armin: yeah, I learned better in the course of trying to fix this misbehaviour in CPython. I've adjusted assorted sq_concat methods to return NotImplemented in the sandbox where I'm working on this, along with modifying abstract.c to correctly cope with that.

[issue11550] Fix ResourceWarning in test_pulldom

2011-03-15 Thread Ben Hayden
Ben Hayden added the comment: I was unclear as to why the list() calls were there. I thought it would just change the iterator into a list - I didn't know that actually was needed for the test - my mistake. I'll change it back to the list() - but I'll need to loop over the first list to make

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Nick Coghlan added the comment: My work in progress is on the respect_LHS_precedence branch in http://hg.python.org/sandbox/ncoghlan Current status is that I have tests for correct handling of sq_concat and sq_repeat, and am close to having sq_concat and sq_inplace_concat behaving correctly.

[issue11509] fileinput module unit test coverage improvements

2011-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset f2e04ce75f0b by briancurtin in branch 'default': Fix #11509. Significantly increase test coverage for fileinput. http://hg.python.org/cpython/rev/f2e04ce75f0b -- nosy: +python-dev ___ Python tracker

[issue11509] fileinput module unit test coverage improvements

2011-03-15 Thread Brian Curtin
Brian Curtin added the comment: Many thanks for the patch, Denver! -- assignee: -> brian.curtin resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker __

[issue11459] Python select.select does not correctly report read readyness

2011-03-15 Thread Ross Lagerwall
Ross Lagerwall added the comment: The Charles' patch fixes the problem but breaks [test_os test_poll test_popen test_select test_uuid] when running make test. Those two lines were introduced by Guido in [1f7891d84d93] but that was back in 2007 when subprocess used os.fdopen and the new IO had

[issue11554] Port email module's test_email_codecs.py to Python 3

2011-03-15 Thread Michael Henry
New submission from Michael Henry : test_email_codecs.py in the email module should be ported to Python 3. The attached patch ports test_email_codecs.py and hooks it into the email test suite. -- components: Library (Lib) files: port-test_email_codecs.py.patch keywords: patch messages:

[issue11555] email.Message.as_string no longer mangles "From " (doc fix)

2011-03-15 Thread Michael Henry
New submission from Michael Henry : The function email.Message.as_string has an out-of-date comment: """ This is a convenience method and may not generate the message exactly as you intend because by default it mangles lines that begin with "From ". For more flexibility, use the flatten() metho

[issue11556] email.Message.get_payload can handle bytes payloads (minor doc fix)

2011-03-15 Thread Michael Henry
New submission from Michael Henry : In email.Message.get_payload, there is the following out-of-date comment: """ # payload can be bytes here, (I wonder if that is actually a bug?) """ The code can actually handle bytes payloads. -- components: Library (Lib) messages: 130982 nosy: mich

[issue11557] Increase coverage in logging module

2011-03-15 Thread Natalia B. Bidart
New submission from Natalia B. Bidart : Current coverage is: Name Stmts Miss Cover -- Lib/logging/__init__ 73916278% Lib/logging/config 571 9883% Lib/logging/handlers 60132546%

[issue11558] Raise a more helpful exception in email.message.Message.attach after set_payload("some string")

2011-03-15 Thread Michael Henry
New submission from Michael Henry : The attached test program, test_email_attach_to_string.py, demonstrates the desire for email.message.Message.attach to raise a more helpful exception when the user incorrectly invokes attach() after setting the payload to a string. -- components: Libra

[issue11509] fileinput module unit test coverage improvements

2011-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9448691fe084 by briancurtin in branch 'default': Add news item for #11509. http://hg.python.org/cpython/rev/9448691fe084 -- ___ Python tracker ___

[issue9667] NetBSD curses KEY_* constants

2011-03-15 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- assignee: -> gregory.p.smith keywords: +patch nosy: +gregory.p.smith Added file: http://bugs.python.org/file21215/_cursesmodule.c.diff ___ Python tracker ___

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Michael Foord
Changes by Michael Foord : Removed file: http://bugs.python.org/file21125/test_posixpath_with_same_device.patch ___ Python tracker ___ ___ Py

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Michael Foord
Changes by Michael Foord : Removed file: http://bugs.python.org/file21124/test_posixpath.patch ___ Python tracker ___ ___ Python-bugs-list mai

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Michael Foord
Changes by Michael Foord : Removed file: http://bugs.python.org/file21122/test_posixpath.patch ___ Python tracker ___ ___ Python-bugs-list mai

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Michael Foord
Michael Foord added the comment: The patch includes an unconditional "import posix" that will fail on Windows. posixpath is available on windows (although not *all* its functionality makes sense), so the whole test should not be skipped - but it is reasonable to skip just the new tests using

[issue11555] email.Message.as_string no longer mangles "From " (doc fix)

2011-03-15 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue11556] email.Message.get_payload can handle bytes payloads (minor doc fix)

2011-03-15 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Michael Foord
Michael Foord added the comment: Note that instead of try finally constructs you can create a cleanup function and call self.addCleanup(...). This reduces extra levels of indentation in your test code. In the new code in "test_ismount", from "# Non-existent mountpoint" on, I would turn this

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

2011-03-15 Thread Winston Ewert
Winston Ewert added the comment: The public methods were using both callable_obj and callableObj. Perhaps the patch should standardize on callableObj and accept callable_obj with a warning? -- ___ Python tracker

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Michael Foord
Michael Foord added the comment: Scratch the comment about symlink - in test_mount. I see you already protect that code with "if support.can_symlink()". -- ___ Python tracker _

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Michael Foord
Michael Foord added the comment: Will posixpath.sameopenfile work on Windows? That may need skipping. -- ___ Python tracker ___ ___ P

[issue1006238] cross compile patch

2011-03-15 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- assignee: gregory.p.smith -> nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue3718] environment variable MACHDEP and python build system

2011-03-15 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- assignee: gregory.p.smith -> nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue6873] posix_lchown: possible overflow of uid, gid

2011-03-15 Thread Gregory P. Smith
Gregory P. Smith added the comment: a test would still be a good thing but this should be fixed regardless. -- resolution: -> accepted status: open -> closed ___ Python tracker

[issue11554] Port email module's test_email_codecs.py to Python 3

2011-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 013a1cd673fc by R David Murray in branch '3.2': #11554: reactivate test_email_codecs, and make it pass. http://hg.python.org/cpython/rev/013a1cd673fc New changeset a6390ebff835 by R David Murray in branch 'default': Merge #11554 test_email_codecs a

[issue11554] Port email module's test_email_codecs.py to Python 3

2011-03-15 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue11505] string.py increased test coverage

2011-03-15 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: After discussion, it's probably a good idea to back port this to Python 3.2. -- nosy: +barry ___ Python tracker ___ __

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Nick Coghlan added the comment: Trying out the hg integration MvL added to Roundup. -- hgrepos: +3 ___ Python tracker ___ ___ Python-

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Changes by Nick Coghlan : -- keywords: +patch Added file: http://bugs.python.org/file21216/85d7c99fd31e.diff ___ Python tracker ___ __

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Changes by Nick Coghlan : Removed file: http://bugs.python.org/file21216/85d7c99fd31e.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Changes by Nick Coghlan : Added file: http://bugs.python.org/file21217/b9b7d4c10bc4.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: To reproduce install ActiveState Tcl 8.5.9 and then build python using: ../configure --enable-framework --enable-universalsdk=/ --with-universal-archs=intel MACOSX_DEPLOYMENT_TARGET=10.6 Both 3.2 and 3.3 fail can be used. Install the framework and then open

[issue11555] email.Message.as_string no longer mangles "From " (doc fix)

2011-03-15 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.1, Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue11556] email.Message.get_payload can handle bytes payloads (minor doc fix)

2011-03-15 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue11556] email.Message.get_payload can handle bytes payloads (minor doc fix)

2011-03-15 Thread R. David Murray
R. David Murray added the comment: Fixed, thanks. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue11459] Python select.select does not correctly report read readyness

2011-03-15 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue11515] Misspelled actually

2011-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset ee5350f1d0c2 by Ezio Melotti in branch '2.7': #11515: fix several typos. Patch by Piotr Kasprzyk. http://hg.python.org/cpython/rev/ee5350f1d0c2 -- ___ Python tracker

[issue11515] Misspelled actually

2011-03-15 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

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

2011-03-15 Thread Michael Foord
Changes by Michael Foord : -- assignee: -> michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue11385] TextTestRunner methods are not documented

2011-03-15 Thread Michael Foord
Changes by Michael Foord : -- assignee: docs@python -> michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

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

2011-03-15 Thread Matthew Barnett
Matthew Barnett added the comment: I've fixed the problem with iterators for both Python 3 and Python 2. They can now be shared safely across threads. I've updated the release on PyPI. -- ___ Python tracker _

[issue11055] OS X IDLE 3.2 Save As menu accelerator opens two Save windows

2011-03-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: Please ignore the patch, it doesn't work after all. It was too good to be true after all. -- nosy: -kbk ___ Python tracker ___

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Nick Coghlan added the comment: I generated a patch between my sandbox and the main repository using the rdiff extension immediately after syncing with the main line of development. ("hg diff --reverse cpython" where cpython is aliased to the main repository) This is the output I was hoping t

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Changes by Nick Coghlan : Added file: http://bugs.python.org/file21220/2f5db44c98f2.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Changes by Nick Coghlan : Removed file: http://bugs.python.org/file21220/2f5db44c98f2.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue11088] IDLE on OS X with Cocoa Tk 8.5 can hang waiting on input / raw_input

2011-03-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: This does seem to be gone in 3.2 with a up-to-date Tk 8.5 from ActiveState. -- nosy: +ronaldoussoren ___ Python tracker ___ __

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Evan Dandrea
Evan Dandrea added the comment: Updated the patch to address Michael's concerns. -- Added file: http://bugs.python.org/file21221/test_posixpath_with_same_device.patch ___ Python tracker __

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Nick Coghlan added the comment: I think the roundup/Hg integration may be getting confused by the merges of the cpython main line of development with my sandbox. -- ___ Python tracker

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Evan Dandrea
Evan Dandrea added the comment: I've looked at the sameopenfile code, and can see no reason why it would not work on Windows. I've asked Brian to verify this. -- ___ Python tracker __

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Evan Dandrea
Evan Dandrea added the comment: I haven't used addCleanup here, but have noted it for the future. In this case, using it would require adding another function to handle the reassignment, which I think is a bit more messy than the extra bit of indentation. -- ___

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Benjamin Peterson
Benjamin Peterson added the comment: Is that a patch you can put on Rietveld then? (/me wanting to review) -- nosy: +benjamin.peterson ___ Python tracker ___ ___

[issue11289] smtplib context manager

2011-03-15 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Thanks for the contribution! It seems like a reasonable new feature, so I'll get this landed in 3.3. Probably should use :versionadded: instead (thanks gps). I'll address SilentGhost's issues in the commit. -- assignee: -> barry nosy: +barry ___

[issue11088] IDLE on OS X with Cocoa Tk 8.5 can hang waiting on input / raw_input

2011-03-15 Thread Ned Deily
Ned Deily added the comment: I can still reproduce it in 3.2 with A/S Tk 8.5. The script needs to be run from a separate editor window, not the PyShell window. -- ___ Python tracker _

[issue11088] IDLE on OS X with Cocoa Tk 8.5 can hang waiting on input / raw_input

2011-03-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: On 15 Mar, 2011, at 13:57, Ned Deily wrote: > > Ned Deily added the comment: > > I can still reproduce it in 3.2 with A/S Tk 8.5. The script needs to be run > from a separate editor window, not the PyShell window. That's odd. What I did: * Create a new

[issue11555] email.Message.as_string no longer mangles "From " (doc fix)

2011-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2804a78a123e by R David Murray in branch '3.1': #11555: update doc for 3.x change to as_string mangle_from default. http://hg.python.org/cpython/rev/2804a78a123e New changeset 9daa9a4c4cc4 by R David Murray in branch '3.2': Merge #11555 as_string d

[issue11555] email.Message.as_string no longer mangles "From " (doc fix)

2011-03-15 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker ___ _

[issue11513] Infinite recursion around raising an exception in tarfile

2011-03-15 Thread Evan Dandrea
Evan Dandrea added the comment: *facepalm* Indeed, thanks for pointing that out and nice catch on the race condition. Attached is a patch to fix the issue as you've suggested, and adds a test case for it. -- keywords: +patch Added file: http://bugs.python.org/file21222/tarfile-fix-m

[issue11513] Infinite recursion around raising an exception in tarfile

2011-03-15 Thread Evan Dandrea
Changes by Evan Dandrea : Added file: http://bugs.python.org/file21223/tarfile-fix-multiple-exception-on-enoent.patch ___ Python tracker ___

[issue11513] Infinite recursion around raising an exception in tarfile

2011-03-15 Thread Evan Dandrea
Changes by Evan Dandrea : Removed file: http://bugs.python.org/file21222/tarfile-fix-multiple-exception-on-enoent.patch ___ Python tracker ___ __

[issue11088] IDLE on OS X with Cocoa Tk 8.5 can hang waiting on input / raw_input

2011-03-15 Thread Ned Deily
Ned Deily added the comment: Sorry, forgot one crucial step: you have to use the keyboard accelerator (F5) to run the script, not the mouse and the menu. It seems like a number of the problems out there with Cocoa Tk 8.5 have to do with using the keyboard accelerators. -- _

[issue11503] Expand test coverage in posixpath

2011-03-15 Thread Brian Curtin
Brian Curtin added the comment: Tested the patch on Windows -- all tests pass. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue9263] Try to print repr() when an C-level assert fails (in the garbage collector, beyond?)

2011-03-15 Thread Dave Malcolm
Changes by Dave Malcolm : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue4972] context managerment support in imaplib, smtplib, ftplib

2011-03-15 Thread SilentGhost
SilentGhost added the comment: The work on smtplib context manager continues in #11289. I'm putting it as a dependency here. -- dependencies: +smtplib context manager nosy: +SilentGhost versions: +Python 3.3 ___ Python tracker

[issue10288] Remove deprecated C "character" handling macros ISUPPER() etc

2011-03-15 Thread Dave Malcolm
Changes by Dave Malcolm : -- resolution: -> accepted stage: patch review -> committed/rejected status: open -> closed versions: -Python 3.3 ___ Python tracker ___ _

[issue9263] Try to print repr() when an C-level assert fails (in the garbage collector, beyond?)

2011-03-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: How about turning these asserts into Py_FatalError()s and then enabling Victor's faulthandler extension? -- ___ Python tracker ___

[issue9635] Add Py_BREAKPOINT and sys._breakpoint hooks

2011-03-15 Thread Dave Malcolm
Changes by Dave Malcolm : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue11289] smtplib context manager

2011-03-15 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: @barry I have commit privileges, but no problem if you want to commit it. -- ___ Python tracker ___

[issue11559] Increase test coverage in dis module

2011-03-15 Thread Matias Bordese
New submission from Matias Bordese : Attaching patch to add new tests for dis module. -- components: Tests files: add_dis_tests.patch keywords: patch messages: 131018 nosy: matiasb priority: normal severity: normal status: open title: Increase test coverage in dis module type: behavior v

[issue11289] smtplib context manager

2011-03-15 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Mar 15, 2011, at 06:40 PM, Giampaolo Rodola' wrote: > >Giampaolo Rodola' added the comment: > >@barry I have commit privileges, but no problem if you want to commit it. @giampaolo: I'd like to do it (and am almost ready to), mostly to test out hg workflow

[issue11289] smtplib context manager

2011-03-15 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Go on, no prob. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue11559] Increase test coverage in dis module

2011-03-15 Thread Benjamin Peterson
Benjamin Peterson added the comment: 1. Use splitlines() instead of split('\n') 2. Use try finally when replacing sys.stdout. 3. Why is dist(None) a RuntimeError and anything else invalid TypeError? -- nosy: +benjamin.peterson ___ Python tracker

[issue11477] Bug in code dispatching based on internal slots

2011-03-15 Thread Nick Coghlan
Nick Coghlan added the comment: MvL says the review creation script should be able to cope with the rdiff output within the next day or so. -- ___ Python tracker ___ __

[issue11257] asyncore stores unnecessary object references

2011-03-15 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Closing out as per msg128969. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue11257] asyncore stores unnecessary object references

2011-03-15 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue11559] Increase test coverage in dis module

2011-03-15 Thread Matias Bordese
Matias Bordese added the comment: Updated patch following Benjamin advice (1. and 2.). Re 3. Why is dist(None) a RuntimeError and anything else invalid TypeError? When the dis argument is None, the last traceback is disassembled; if something different to None and that does not have code (ie.

[issue11289] smtplib context manager

2011-03-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset a6a94cfb75e9 by Barry Warsaw in branch 'default': - Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used http://hg.python.org/cpython/rev/a6a94cfb75e9 -- nosy: +python-dev ___ Pyth

[issue11289] smtplib context manager

2011-03-15 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue11289] smtplib context manager

2011-03-15 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- resolution: -> accepted ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue11289] smtplib context manager

2011-03-15 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- stage: -> committed/rejected type: -> feature request ___ Python tracker ___ ___ Python-bugs-list

[issue11515] Misspelled actually

2011-03-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: I want to thank you all too, both for the changes themselves and for the bundling. -- nosy: +terry.reedy ___ Python tracker ___ __

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

2011-03-15 Thread Tarek Ziadé
Changes by Tarek Ziadé : Removed file: http://bugs.python.org/file21137/pycon-issue11501.patch ___ Python tracker ___ ___ Python-bugs-list mai

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

2011-03-15 Thread Tarek Ziadé
Changes by Tarek Ziadé : Removed file: http://bugs.python.org/file21142/pycon-issue11501.patch ___ Python tracker ___ ___ Python-bugs-list mai

  1   2   >