Re: [Python-Dev] Completing the email6 API changes.

2013-09-03 Thread R. David Murray
On Tue, 03 Sep 2013 10:56:36 +0900, Stephen J. Turnbull step...@xemacs.org wrote: R. David Murray writes: I can understand the structure Glen found in Applemail: a series of text/plain parts interspersed with image/jpg, with all parts after the first being marked

Re: [Python-Dev] Completing the email6 API changes.

2013-09-03 Thread R. David Murray
On Tue, 03 Sep 2013 10:01:42 -0400, R. David Murray rdmur...@bitdance.com wrote: On Tue, 03 Sep 2013 10:56:36 +0900, Stephen J. Turnbull step...@xemacs.org wrote: R. David Murray writes: I can understand the structure Glen found in Applemail: a series of text/plain parts interspersed

[Python-Dev] Python 2.6 to end support with 2.6.9 in October 2013

2013-09-03 Thread Barry Warsaw
Hello Pythonistas, Python 2.6.9 is the last planned release of the 2.6.x series. This will be a security-only source-only release. It is currently scheduled for October 2013, and after this Python 2.6 will have reached its end-of-life and the branch will be retired.

Re: [Python-Dev] Python 2.6 to end support with 2.6.9 in October 2013

2013-09-03 Thread Ryan
I'm still waiting on Python 2.7 for Android! Stuck on 2.6 for now...ugh! Wonder if I can build it myself... Barry Warsaw ba...@python.org wrote: Hello Pythonistas, Python 2.6.9 is the last planned release of the 2.6.x series. This will be a security-only source-only release. It is currently

[Python-Dev] RFC: PEP 454: Add a new tracemalloc module

2013-09-03 Thread Victor Stinner
Hi, Antoine Pitrou suggested me to write a PEP to discuss the API of the new tracemalloc module that I proposed to add to Python 3.4. Here you have. If you prefer to read the HTML version: http://www.python.org/dev/peps/pep-0454/ See also the documentation of the current implementation of the

Re: [Python-Dev] RFC: PEP 454: Add a new tracemalloc module

2013-09-03 Thread Victor Stinner
``get_object_trace(obj)`` function: Get the trace of a Python object *obj* as a ``trace`` instance. Return ``None`` if the tracemalloc module did not save the location when the object was allocated, for example if the module was disabled. This function and get_traces() can