[issue15720] move __import__() out of the default lookup chain

2012-08-17 Thread Eric Snow
Eric Snow added the comment: Ah, __import__() is used all over the place in the stdlib. I won't have time right away to put together the patch then. However, here's what I'm planning: * expose builtin___import__() (from Python/bltinmodule.c) as imp.__import__(). * expose one used by the inter

[issue15716] Ability to specify the PYTHONPATH via a command line flag

2012-08-17 Thread Eric Snow
Eric Snow added the comment: Would issue14803 be sufficient? Certainly not quite as concise, but deferring to that solution would limit the proliferation of command-line arguments to the interpreter. -- ___ Python tracker

[issue15578] Crash when modifying sys.modules during import

2012-08-17 Thread Eric Snow
Eric Snow added the comment: Here's the deal. import_module_level() gets called for v1 from sa (where "globals" comes from). In that function it first calls get_parent(), which returns a borrowed reference to the sa module object. Then that parent object is passed to load_next() where the act

[issue15715] __import__ now raises with non-existing items in fromlist in 3.3

2012-08-17 Thread Eric Snow
Eric Snow added the comment: I've taken the tanget over to issue15720. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue15720] move __import__() out of the default lookup chain

2012-08-17 Thread Eric Snow
New submission from Eric Snow: When people want to import modules with "runtime" names, they regrettably turn to __import__(), have done so for many years, and likely will for a while. If it were less convenient to use __import__(), fewer people would use it. I'm putting together a patch that

[issue14905] zipimport.c needs to support namespace packages when no 'directory' entry exists

2012-08-17 Thread Eric Snow
Changes by Eric Snow : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue15586] Provide some examples for usage of ElementTree methods/attributes

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7012f6a74f66 by Eli Bendersky in branch 'default': Issue #15586: fix prompts in some documentation examples http://hg.python.org/cpython/rev/7012f6a74f66 -- ___ Python tracker

[issue15586] Provide some examples for usage of ElementTree methods/attributes

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 094423a65a4e by Eli Bendersky in branch '2.7': Issue #15586: porting ET's new documentation bits to 2.7. Patch by Daniel Ellis http://hg.python.org/cpython/rev/094423a65a4e -- ___ Python tracker

[issue9271] Python throws `IOError: [Errno 27] File too large' on long file names

2012-08-17 Thread R. David Murray
Changes by R. David Murray : -- stage: -> committed/rejected status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mai

[issue15636] base64.decodebytes is only available in Python3.1+

2012-08-17 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue15636] base64.decodebytes is only available in Python3.1+

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset ca5b36754892 by R David Murray in branch '3.2': #15636: add versionadded for decodebytes http://hg.python.org/cpython/rev/ca5b36754892 New changeset a343fa692bb0 by R David Murray in branch 'default': Merge #15636: add versionadded for decodebytes h

[issue15355] generator docs should mention already-executing exception

2012-08-17 Thread R. David Murray
R. David Murray added the comment: Confirmed that 2.7 raises the same errors (as I expected) using your test. Thanks, Chris. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue15355] generator docs should mention already-executing exception

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset dc4b00f51c48 by R David Murray in branch '3.2': #15355: Mention already-executing Exception in generator docs. http://hg.python.org/cpython/rev/dc4b00f51c48 New changeset 73f1ba3319dd by R David Murray in branch 'default': Merge #15355: Mention alre

[issue15694] link to "file object" glossary entry in open() and io docs

2012-08-17 Thread R. David Murray
R. David Murray added the comment: Thanks, Chris. -- nosy: +r.david.murray resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue15694] link to "file object" glossary entry in open() and io docs

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1d5c451a1365 by R David Murray in branch '3.2': #15694: Link discussion of file objects to glossary entry. http://hg.python.org/cpython/rev/1d5c451a1365 New changeset 977606940531 by R David Murray in branch 'default': Merge #15694: Link discussion

[issue15694] link to "file object" glossary entry in open() and io docs

2012-08-17 Thread Chris Jerdonek
Chris Jerdonek added the comment: Thanks. Could either one of you commit this for me? -- ___ Python tracker ___ ___ Python-bugs-list m

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-17 Thread Ned Deily
Ned Deily added the comment: I took a quick look at the issue and I could reproduce by doing a "make install" of 3.3.0b1 then a build and "make install" of 3.3.0b2 in the same locations. Doing a clean 3.3.0b2 build and install produce the expected results. It appears to be a unix Makefile is

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe there are known problems with 3.3 and mac, so I added the mac experts. -- nosy: +hynek, ned.deily, ronaldoussoren ___ Python tracker _

[issue15642] Integrate pickle protocol version 4 GSoC work by Stefan Mihaila

2012-08-17 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: Oops, wrong patch. Uploading the right one. -- Added file: http://bugs.python.org/file26882/pickle4-2.diff ___ Python tracker ___

[issue15642] Integrate pickle protocol version 4 GSoC work by Stefan Mihaila

2012-08-17 Thread Alexandre Vassalotti
Changes by Alexandre Vassalotti : Removed file: http://bugs.python.org/file26881/pickle4-2.diff ___ Python tracker ___ ___ Python-bugs-list ma

[issue15599] test_circular_imports() of test_threaded_import fails on FreeBSD 9.0

2012-08-17 Thread Stefan Krah
Stefan Krah added the comment: Reproduced by another FreeBSD bot: http://buildbot.python.org/all/builders/AMD64%20FreeBSD%209.0%20dtrace%203.x/builds/238/steps/test/logs/stdio -- ___ Python tracker ___

[issue15642] Integrate pickle protocol version 4 GSoC work by Stefan Mihaila

2012-08-17 Thread Alexandre Vassalotti
Changes by Alexandre Vassalotti : -- dependencies: +Unbinding of methods ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue15642] Integrate pickle protocol version 4 GSoC work by Stefan Mihaila

2012-08-17 Thread Alexandre Vassalotti
Changes by Alexandre Vassalotti : Added file: http://bugs.python.org/file26881/pickle4-2.diff ___ Python tracker ___ ___ Python-bugs-list mail

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-17 Thread Stefan Holek
Stefan Holek added the comment: Mac OS X 10.6.8 (Snow Leopard) Xcode Tools 3.2.6 ./configure --prefix=/usr/local/python3.3 make sudo make install -- ___ Python tracker ___ _

[issue15632] regrtest.py: spurious leaks with -R option

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset dc18d73e67a5 by Stefan Krah in branch 'default': Closes #15632: regrtest.py: fix spurious refleaks due to various caches http://hg.python.org/cpython/rev/dc18d73e67a5 -- nosy: +python-dev resolution: -> fixed stage: patch review -> committe

[issue15719] Sort dict items in urlencode()

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

[issue15355] generator docs should mention already-executing exception

2012-08-17 Thread Chris Jerdonek
Chris Jerdonek added the comment: Good suggestion, David. Here is such sample test code. It is adapted from the sample code for "ValueError: generator already executing" included in PEP 255: def test_gen(call_gen_method): def gen(): call_gen_method(me) yield 1 me = gen

[issue15719] Sort dict items in urlencode()

2012-08-17 Thread Guido van Rossum
New submission from Guido van Rossum: >From http://mail.python.org/pipermail/python-dev/2012-August/121364.html : """ I just fixed a unittest for some code used at Google that was comparing a url generated by urllib.encode() to a fixed string. The problem was caused by turning on PYTHONHASHSEED=

[issue15678] IDLE menu customization is broken from OS X command lines

2012-08-17 Thread Ned Deily
Ned Deily added the comment: Applied for 3.3.0rc1 -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue15678] IDLE menu customization is broken from OS X command lines

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4610ac42130e by Ned Deily in branch 'default': Issue #15678: Fix menu customization for IDLE started from OS X http://hg.python.org/cpython/rev/4610ac42130e -- nosy: +python-dev ___ Python tracker

[issue15307] Patch for --symlink support in pyvenv with framework python

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4610ac42130e by Ned Deily in branch 'default': Issue #15678: Fix menu customization for IDLE started from OS X http://hg.python.org/cpython/rev/4610ac42130e -- ___ Python tracker

[issue15718] Possible OverflowError in __len__ method undocumented (when called via len() function)

2012-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: In #12159, Victor correctly labelled this an implementation (IE, CPython) detail (limitation). I don't believe any implementation has to limit the range of len(). So the question is whether we should add a CPython implementation limit note, including the possi

[issue15623] Init time relative imports no longer work from __init__.so modules

2012-08-17 Thread Brett Cannon
Brett Cannon added the comment: So I can't reproduce under 3.2. First off, building the example code in test.tgz fails thanks to __Py_ZeroStruct not being found (this is with using both an installed Python 3.2 and a checkout build). Second, when I just make audioop a package in Python 3.2 it s

[issue15660] Clarify 0 prefix for width specifier in str.format doc,

2012-08-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- assignee: docs@python -> terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue15660] Clarify 0 prefix for width specifier in str.format doc,

2012-08-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: needs patch -> committed/rejected status: open -> closed title: In str.format there is a misleading error message about alignment -> Clarify 0 prefix for width specifier in str.format doc, ___ Python tracker

[issue15660] In str.format there is a misleading error message about alignment

2012-08-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue15660] In str.format there is a misleading error message about alignment

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 85cd54b2d3a1 by Terry Jan Reedy in branch '2.7': Issue 15660: Clarify 0 prefix for width field in str.format doc. http://hg.python.org/cpython/rev/85cd54b2d3a1 New changeset 6bc14974024f by Terry Jan Reedy in branch '3.2': Issue 15660: Clarify 0 pre

[issue15477] test_cmath failures on OS X 10.8

2012-08-17 Thread Trent Nelson
Trent Nelson added the comment: I ran into this last night and posted to python-dev before realizing this bug had been raised: http://mail.python.org/pipermail/python-dev/2012-August/121359.html I'll reproduce it here as I made a few observations that haven't yet been mentioned in this issue:

[issue15694] link to "file object" glossary entry in open() and io docs

2012-08-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: LGTM too. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15660] In str.format there is a misleading error message about alignment

2012-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: As I read the docs, the error message is correct and this issue is invalid as a behavior issue. I read the OP's second message as more or less saying this also. "'='Forces the padding to be placed after the sign (if any) but before the digits. This is used

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: Éric, while issue 120 is being considered, I have given you the "Coordinator". Use your new powers carefully :-) -- ___ Python tracker ___ ___

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread R. David Murray
R. David Murray added the comment: Because the spammer faked that address, presumably. -- nosy: +r.david.murray ___ Python tracker ___ ___

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Your OS and distribution/version might be relevant information. -- nosy: +terry.reedy ___ Python tracker ___ ___

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread Ezio Melotti
Ezio Melotti added the comment: http://psf.upfronthosting.co.za/roundup/meta/issue120 should fix the problem. Why did the message come from python-dev though? -- ___ Python tracker _

[issue15657] Error in Python 3 docs for PyMethodDef

2012-08-17 Thread Andrew Svetlov
Andrew Svetlov added the comment: I think we can change PyCFunction_Call to accept METH_KEYWORDS as alias for METH_VARARGS | METH_KEYWORDS. It cannot make incompatibility with existing code base. -- ___ Python tracker

[issue15636] base64.decodebytes is only available in Python3.1+

2012-08-17 Thread R. David Murray
R. David Murray added the comment: We have plenty of "versionadded" and "versionchanged" tags for 3.1 in the docs. We should add one for this as well to the 3.2 and 3.3 docs. -- nosy: +r.david.murray resolution: invalid -> stage: committed/rejected -> needs patch status: closed -> ope

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread Éric Araujo
Éric Araujo added the comment: It seems the spam controls are only accessible to tracker devs. Is there a list somewhere to let bug triagers know who should be added to nosy to take action? -- ___ Python tracker

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue15636] base64.decodebytes is only available in Python3.1+

2012-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Once a version goes off normal maintenance, we stop patching the manual except for changes related to security fixes. So the 3.1 manual is also frozen (except for possible security fixes). The same is true of 2.6 and will be true of 3.2 when its final maintena

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: This is spam/a virus. Please don't just unlink the file, as it still remains accessible, and will ultimately result in Google (and perhaps other search engines) declare the bug tracker as a spam host. Instead, the proper action is to select the "mark as spam"

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue15634] Add serialized decorator to the threading module

2012-08-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- title: synchronized decorator for the threading module -> Add serialized decorator to the threading module ___ Python tracker ___

[issue15631] Python 3.3 beta 1 installation issue lib/lib64 folders

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

[issue15636] base64.decodebytes is only available in Python3.1+

2012-08-17 Thread Éric Araujo
Éric Araujo added the comment: 3.0 is considered an alpha release by python-dev, is is not officially supported and is basically dead. 3.1 was released very soon after, mostly to fix the slow I/O. That’s why the docs don’t detail what’s new in 3.1, as this version is considered the first Pyt

[issue15640] Document importlib.abc.Finder as deprecated

2012-08-17 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker ___

[issue15640] Document importlib.abc.Finder as deprecated

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4bbb1ff4f7ea by Brett Cannon in branch 'default': Issue #15640: Document importlib.abc.Finder as deprecated. http://hg.python.org/cpython/rev/4bbb1ff4f7ea -- nosy: +python-dev ___ Python tracker

[issue15031] Split .pyc parsing from module loading

2012-08-17 Thread Brett Cannon
Brett Cannon added the comment: While thinking about terminology, source files/modules vs. bytecode files/modules make the distinction clear enough to differentiate just straight bytecode for an object (i.e. what dis outputs) vs. bytecode plsu the other stuff that goes with .pyc files. --

[issue15629] Run doctests in Doc/*.rst as part of regrtest

2012-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: On Windows, .rst files are not part of the install, so running doctests on .rst files cannot be a required part of the standard regrtest. -- nosy: +terry.reedy versions: +Python 3.4 ___ Python tracker

[issue15643] Support OpenCSW in setup.py

2012-08-17 Thread Éric Araujo
Éric Araujo added the comment: +1 -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue15715] __import__ now raises with non-existing items in fromlist in 3.3

2012-08-17 Thread Brett Cannon
Brett Cannon added the comment: We might be able to hide it in Python 3 since importlib.import_module() has been available since Python 3.1 (and 3.0 is dead anyway). -- ___ Python tracker _

[issue15694] link to "file object" glossary entry in open() and io docs

2012-08-17 Thread Éric Araujo
Éric Araujo added the comment: LGTM. -- nosy: +eric.araujo, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue15710] logging module crashes in Python 2.7.3 for handler.setLevel(long)

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

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +ezio.melotti resolution: -> invalid stage: -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file26878/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue15717] Mail System Error - Returned Mail

2012-08-17 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file26877/file.zip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue5765] stack overflow evaluating eval("()" * 30000)

2012-08-17 Thread Mark Shannon
Mark Shannon added the comment: I've re-reviewed Andrea's patch (I was looking over Andrea's shoulder at the EuroPython sprint when he wrote it). It looks good and applies cleanly. Could someone commit it please. -- nosy: +Mark.Shannon ___ Python t

[issue15715] __import__ now raises with non-existing items in fromlist in 3.3

2012-08-17 Thread Eric Snow
Eric Snow added the comment: When people want to import modules with "runtime" names, they regrettably turn to __import__() and likely will for a while. What a source of headaches! If it were less convenient to use __import__(), perhaps fewer people would use it. Could we remove it from .__b

[issue15653] PEP 3121, 384 refactoring applied to hashopenssl module

2012-08-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: Antoine: Py_DECREF calls tp_dealloc directly, so the type needs to be DECREFed in the course of tp_dealloc. I don't think there is any alternative to that. One may wonder why regular extension types don't do that: this is because of a hack that excludes stati

[issue15715] __import__ now raises with non-existing items in fromlist in 3.3

2012-08-17 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue15715] __import__ now raises with non-existing items in fromlist in 3.3

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0d52f125dd32 by Brett Cannon in branch 'default': Issue #15715: Ignore failed imports triggered by the use of fromlist. http://hg.python.org/cpython/rev/0d52f125dd32 -- nosy: +python-dev ___ Python tracke

[issue15675] PEP 3121, 384 Refactoring applied to array module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15674] PEP 3121, 384 Refactoring applied to thread module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15673] PEP 3121, 384 Refactoring applied to testcapi module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15672] PEP 3121, 384 Refactoring applied to testbuffer module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15671] PEP 3121, 384 Refactoring applied to struct module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15670] PEP 3121, 384 Refactoring applied to ssl module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15669] PEP 3121, 384 Refactoring applied to sre module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15667] PEP 3121, 384 refactoring applied to pickle module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15666] PEP 3121, 384 refactoring applied to lzma module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15665] PEP 3121, 384 refactoring applied to lsprof module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15662] PEP 3121 refactoring applied to locale module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15657] Error in Python 3 docs for PyMethodDef

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15655] PEP 384 Refactoring applied to json module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15654] PEP 384 Refactoring applied to bz2 module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15652] PEP 3121, 384 refactoring applied to gdbm module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15653] PEP 3121, 384 refactoring applied to hashopenssl module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15651] PEP 3121, 384 refactoring applied to elementtree module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15650] PEP 3121, 384 refactoring applied to dbm module

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15645] 2to3 Grammar pickles not created when upgrading to 3.3.0b2

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15642] Integrate pickle protocol version 4 GSoC work by Stefan Mihaila

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15641] Clean up importlib for Python 3.4

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15640] Document importlib.abc.Finder as deprecated

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15627] Add a method to importlib.abc.SourceLoader for converting source to a code object

2012-08-17 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15715] __import__ now raises with non-existing items in fromlist in 3.3

2012-08-17 Thread Brett Cannon
Brett Cannon added the comment: And this is why we have said people should use the idiom of ``__import__('http.blah'); mod = sys.modules['http.blah']`` if importlib is not used (which is on PyPI and works as far back as Python 2.3), else you will deal with an AttributeError later instead of an

[issue15412] Note in documentation for weakrefs

2012-08-17 Thread Richard Oudkerk
Changes by Richard Oudkerk : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue15412] Note in documentation for weakrefs

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 78b0f294674c by Richard Oudkerk in branch '2.7': Issue #15412: Remove erroneous note about weakrefs http://hg.python.org/cpython/rev/78b0f294674c New changeset 24b13be81d61 by Richard Oudkerk in branch '3.2': Issue #15412: Remove erroneous note abou

[issue15477] test_cmath failures on OS X 10.8

2012-08-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: Without looking into the details of the issue: conditionalizing a work-around on OSX sounds right. On the one hand, it may penalize OSX releases which get it right. OTOH, it's all Apple's fault (IIUC), so they deserve it :-) Further, using a build-time check

[issue14501] Error initialising BaseManager class with 'authkey' argument of string type.

2012-08-17 Thread Richard Oudkerk
Richard Oudkerk added the comment: I have fixed the documentation and examples to say that authentication keys are byte strings. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue14501] Error initialising BaseManager class with 'authkey' argument of string type.

2012-08-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 636f75da4b9e by Richard Oudkerk in branch '3.2': Issue #14501: Clarify that authentication keys are byte strings http://hg.python.org/cpython/rev/636f75da4b9e -- nosy: +python-dev ___ Python tracker

[issue15528] Better support for finalization with weakrefs

2012-08-17 Thread Richard Oudkerk
Richard Oudkerk added the comment: Updated patch. -- Added file: http://bugs.python.org/file26879/finalize.patch ___ Python tracker ___ __

  1   2   >