diff options
| author | Collin Winter <collinw@gmail.com> | 2007-03-21 02:57:17 +0000 |
|---|---|---|
| committer | Collin Winter <collinw@gmail.com> | 2007-03-21 02:57:17 +0000 |
| commit | 5380fe315ab60ecf23be8a87b9acbf1788be119f (patch) | |
| tree | 842448b4471f8bdc06339cb704e2d0c096fcf5f5 /Python/sysmodule.c | |
| parent | df26c4d3a19a4910c6509df61ecbffd4514a42bb (diff) | |
| download | cpython-5380fe315ab60ecf23be8a87b9acbf1788be119f.tar.gz | |
Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API.
Diffstat (limited to 'Python/sysmodule.c')
| -rw-r--r-- | Python/sysmodule.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index c7d8593396..d3c90bfcac 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -897,9 +897,6 @@ excepthook -- called to handle any uncaught exception other than SystemExit\n\ To customize printing in an interactive session or to install a custom\n\ top-level exception handler, assign other functions to replace these.\n\ \n\ -exitfunc -- if sys.exitfunc exists, this routine is called when Python exits\n\ - Assigning to sys.exitfunc is deprecated; use the atexit module instead.\n\ -\n\ stdin -- standard input file object; used by raw_input() and input()\n\ stdout -- standard output file object; used by print()\n\ stderr -- standard error object; used for error messages\n\ |
