Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -5/+5 |
|\ | |||||
| * | Removed unintentional trailing spaces in non-external and non-generated C files. | Serhiy Storchaka | 2015-03-18 | 1 | -4/+4 |
| | | |||||
| * | Issue #22869: Split pythonrun into two modules | Nick Coghlan | 2014-11-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | - interpreter startup and shutdown code moved to a new pylifecycle.c module - Py_OptimizeFlag moved into the new module with the other global flags | ||||
* | | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -1/+1 |
|/ | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
* | Issue #18619: Fix atexit leaking callbacks registered from sub-interpreters, ↵ | Antoine Pitrou | 2013-08-01 | 1 | -42/+79 |
| | | | | and make it GC-aware. | ||||
* | Issue #11826: Fix memory leak in atexitmodule. | Stefan Krah | 2012-03-27 | 1 | -1/+9 |
| | |||||
* | Issue #10756: atexit normalizes the exception before displaying it. Patch by | Victor Stinner | 2011-05-15 | 1 | -0/+1 |
| | | | | | | Andreas Stührk. Backport a fix already applied to Python 3.2+ (4a82be47a948 + 5060a92a8597). | ||||
* | Issue #4200: Changed the atexit module to store its state in its PyModuleDef ↵ | Christian Heimes | 2008-10-30 | 1 | -50/+82 |
| | | | | atexitmodule. This fixes a bug with multiple subinterpeters. The bug was found by Graham Dumpletom during his work on a 3.0 port of mod_wsgi. The patch has been reviewed by Benjamin. | ||||
* | Fix for issue 3666 - atexit.register with bad inputs segfaults on exit. | Skip Montanaro | 2008-09-23 | 1 | -6/+7 |
| | | | | Reviewed by Christian Heimes. | ||||
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -4/+18 |
| | |||||
* | missing docstrings | Skip Montanaro | 2007-08-06 | 1 | -5/+23 |
| | |||||
* | Address some XXXs from Neal Norwitz. | Collin Winter | 2007-03-23 | 1 | -8/+19 |
| | |||||
* | Little fixes: | Neal Norwitz | 2007-03-21 | 1 | -8/+15 |
| | | | | | | | | * make some module variables static to prevent name pollution * Add some comments to clarify what's going on and some XXXs to address * Add a space after "for" before ( * exc_value and tb can be NULL in some cases * Get working on Windows (I think) | ||||
* | Patch #1680961: remove sys.exitfunc and replace it with a private C API. ↵ | Collin Winter | 2007-03-21 | 1 | -0/+217 |
Also, reimplement atexit in C so it can take advantage of this private API. |