[issue16500] Add an 'atfork' module

2013-10-16 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue16500> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13266] Add inspect.unwrap(f) to easily unravel "__wrapped__" chains

2013-07-16 Thread Aaron Iles
Aaron Iles added the comment: My +1 is for the callback based approach. The brevity of the search loop for finding the innermost function is (in my opinion at least) non-obvious, relying on for loops not having their own scope as it does. If a generator based API was adopted instead, I

[issue18203] Replace direct calls to malloc() with PyMem_Malloc() or PyMem_RawMalloc()

2013-06-16 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue18203> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18227] Use Python memory allocators in external libraries like zlib or OpenSSL

2013-06-16 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue18227> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18054] Add more exception related assertions to unittest

2013-05-28 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue18054> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5289] ctypes.util.find_library does not work under Solaris

2012-12-13 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue5289> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue7741] Allow multiple statements in code.InteractiveConsole.push

2012-12-08 Thread Aaron Iles
Aaron Iles added the comment: Should a new issue be created to decouple "print after every call" from the single vs multiple statement condition that is a blocker for this issue? Or can it be resolved here? On Sunday, 9 December 2012, Nick Coghlan wrote: > > Nick Coghlan a

[issue13266] Add inspect.unwrap(f) to easily unravel "__wrapped__" chains

2012-10-29 Thread Aaron Iles
Aaron Iles added the comment: I've updated the patch for the current default branch (to be Python 3.4) and added documentation to the inspect module for the new unwraps function. Functionally unwraps and it's tests are unchanged. -- Added file: http://bugs.python.org/file27

[issue12890] cgitb displays tags when executed in text mode

2012-10-29 Thread Aaron Iles
Aaron Iles added the comment: Patch successfully tested on Mac OSX 10.8. No regressions. -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue12

[issue15629] Add to regrtest the ability to run Lib and Doc doctests

2012-09-16 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue15629> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15513] Correct __sizeof__ support for pickle

2012-08-29 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue15513> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15695] Correct __sizeof__ support for StgDict

2012-08-29 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue15695> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15696] Correct __sizeof__ support for mmap

2012-08-29 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue15696> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15436] __sizeof__ is not documented

2012-08-29 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue15436> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15490] Correct __sizeof__ support for StringIO

2012-08-29 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue15490> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13266] Add inspect.unwrap(f) to easily unravel "__wrapped__" chains

2012-08-29 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue13266> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15475] Correct __sizeof__ support for itertools

2012-08-29 Thread Aaron Iles
Changes by Aaron Iles : -- nosy: +aliles ___ Python tracker <http://bugs.python.org/issue15475> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12403] Mention sys.displayhook in code module docs and the compile builtin docs

2012-08-27 Thread Aaron Iles
Aaron Iles added the comment: I've submitted a patch which adds a section to the code module's documentation on overriding console output. It attempts to catalogue when sys.stderr, sys.excepthook and sys.displayhook are used to print console output. -- keywords: +patch nos