Re: [Python-Dev] PEP 451 update

2013-10-27 Thread Nick Coghlan
On 28 Oct 2013 08:41, "PJ Eby" wrote: > > On Sun, Oct 27, 2013 at 4:59 PM, Nick Coghlan wrote: > > > > On 28 Oct 2013 02:37, "PJ Eby" wrote: > >> > >> On Sun, Oct 27, 2013 at 1:03 AM, Nick Coghlan wrote: > >> > Now, regarding the signature of exec_module(): I'm back to believing > >> > that loa

Re: [Python-Dev] PEP 451 update

2013-10-27 Thread PJ Eby
On Sun, Oct 27, 2013 at 4:59 PM, Nick Coghlan wrote: > > On 28 Oct 2013 02:37, "PJ Eby" wrote: >> >> On Sun, Oct 27, 2013 at 1:03 AM, Nick Coghlan wrote: >> > Now, regarding the signature of exec_module(): I'm back to believing >> > that loaders should receive a clear indication that a reload is

Re: [Python-Dev] pathlib (PEP 428) status

2013-10-27 Thread Oliver Bestwalter
Hi, Christian Heimes python.org> writes: > [...] Last week at PyCon.DE in Cologne > several people have asked me about pathlib. We even had a BarCamp > session about path libraries for Python. A couple of German Python users > have promised to contribute doc improvements soonish. Yes I am one o

Re: [Python-Dev] PEP 451 update

2013-10-27 Thread Nick Coghlan
On 28 Oct 2013 02:37, "PJ Eby" wrote: > > On Sun, Oct 27, 2013 at 1:03 AM, Nick Coghlan wrote: > > Now, regarding the signature of exec_module(): I'm back to believing > > that loaders should receive a clear indication that a reload is taking > > place. Legacy loaders have to figure that out for

[Python-Dev] [RELEASED] Python 3.3.3 release candidate 1

2013-10-27 Thread Georg Brandl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On behalf of the Python development team, I'm quite happy to announce the Python 3.3.3 release candidate 1. Python 3.3.3 includes several security fixes and over 150 bug fixes compared to the Python 3.3.2 release. This release fully supports OS X 10.

[Python-Dev] [RELEASE] Python 2.7.6 release candidate 1

2013-10-27 Thread Benjamin Peterson
I'm happy to announce the availability of Python 2.7.6 release candidate 1. Most importantly, this release candidate resolves crashes of the interactive interpreter on OS X 10.9. It also includes the usual collection of bugfixes over 2.7.5. These are described in excruciating detail in the Misc/NE

Re: [Python-Dev] Updated PEP 454 (tracemalloc): no more metrics!

2013-10-27 Thread Victor Stinner
Hum, timestamp and traceback_limit attributed of GroupedStats can also be removed, they are just of the same attribute of the Snapshot class and GroupedStats is created from Snapshot.group_by(). Le 27 oct. 2013 17:26, "Victor Stinner" a écrit : > * do you have a better suggestion for GroupedStats

Re: [Python-Dev] OrderedDict.values() behavior for modified instance

2013-10-27 Thread Ethan Furman
On 10/26/2013 08:32 PM, Nikolaus Rath wrote: Ethan Furman writes: Good write-up. Please submit it to the bug tracker: http://bugs.python.org Submitted as http://bugs.python.org/issue19414. If someone gives me the go-ahead for one of the proposed solutions, I'd be happy to create a full pat

Re: [Python-Dev] PEP 451 update

2013-10-27 Thread PJ Eby
On Sun, Oct 27, 2013 at 1:03 AM, Nick Coghlan wrote: > Now, regarding the signature of exec_module(): I'm back to believing > that loaders should receive a clear indication that a reload is taking > place. Legacy loaders have to figure that out for themselves (by > seeing that the module already e

Re: [Python-Dev] Updated PEP 454 (tracemalloc): no more metrics!

2013-10-27 Thread Victor Stinner
I updated the PEP according to different comments: * replace Snapshot.create() class method with take_snapshot() function * get_traces() now returns a list instead of a dict (remove addresses) * remove get_stats() * unknown frames are now stored as ("", 0) instead of (None, None) * remove get_obje