summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Fred's right -- we need PyList_SET_ITEM().Guido van Rossum1998-04-241-1/+1
* In-line the code in range() to set the list items; there's really noGuido van Rossum1998-04-231-1/+1
* Support for OpenBSD :-(Guido van Rossum1998-04-131-1/+1
* Reject empty module names -- otherwise __import__("") does somethingGuido van Rossum1998-04-111-0/+5
* Move #include <sys/param.h> to before osdefs.h (Donn Cave).Guido van Rossum1998-04-101-4/+5
* Comment out a label on an #endif.Guido van Rossum1998-04-101-1/+1
* Make new gcc -Wall happyGuido van Rossum1998-04-105-9/+16
* Address warnings issued by the MSVC++ compilerGuido van Rossum1998-04-102-2/+2
* /* An extension mechanism to store arbitrary additional per-thread state.Guido van Rossum1998-04-101-0/+21
* Translate E_INDENT to the clearest error message I can think of.Guido van Rossum1998-04-101-0/+3
* Make first raise argument optionalGuido van Rossum1998-04-093-8/+25
* Make sure that the message "Error in sys.exitfunc:" goes to sys.stderrGuido van Rossum1998-04-031-2/+4
* Make calls into ../PC/frozen_dllmain.c on MS_WIN32.Guido van Rossum1998-04-031-0/+11
* Add primitive test for frozen package.Guido van Rossum1998-04-031-0/+4
* Use a faster way to check for null bytes in the string argument forGuido van Rossum1998-03-131-7/+18
* Support for frozen packages, matching the revamped Tools/freeze.Guido van Rossum1998-03-051-14/+60
* Oops -- overuse of dabbrev-expand introduced a strange bug, whereGuido van Rossum1998-03-031-1/+1
* Add a single Python-wide (!) lock on import. Only one thread at aGuido van Rossum1998-03-031-8/+71
* Fix the handling of errors in Py_FlushLine() in a few places.Guido van Rossum1998-02-281-5/+7
* Moved clear_carefully() to _PyModule_Clear() in moduleobject.cGuido van Rossum1998-02-191-69/+31
* Make backup copies of stdin, stdout, stderr as __stdin__, __stdout__,Guido van Rossum1998-02-191-0/+4
* Small patches to the DJGPP version of check_case().Guido van Rossum1998-02-181-1/+3
* Added DJGPP version of check_case(), by Pit Scrorpion (Hans Nowak).Guido van Rossum1998-02-131-0/+28
* Add case checking feature on import.Guido van Rossum1998-02-131-1/+78
* Added PyImport_ExecCodeModuleEx(), which adds an extra parameter toGuido van Rossum1998-02-111-5/+25
* Set Py_FrozenFlag, to suppress error messages from getpath.c.Guido van Rossum1998-02-061-0/+2
* Ehm, three unrelated changes.Guido van Rossum1998-02-061-3/+31
* Two more refinements of the cleanup process.Guido van Rossum1998-02-061-3/+52
* Protect PyErr_Format format string argument from overflow.Guido van Rossum1998-01-191-1/+1
* Protect PyErr_Format format string argument from overflow (ironically,Guido van Rossum1998-01-191-1/+1
* Add unistd.h for isatty().Guido van Rossum1998-01-191-0/+4
* Better #ifdefs for NetBSD, taking into account that at least on netBSDGuido van Rossum1998-01-191-3/+8
* It seems obvious that when Py_Finalize() decides that there's nothingGuido van Rossum1998-01-191-2/+2
* Rewritten PyImport_Cleanup() and its helper, clear_carefully(). TheyGuido van Rossum1998-01-191-12/+98
* Last-minute fix for Jim H: don't die after del sys.stdoutGuido van Rossum1997-12-311-2/+11
* Plug the most annoying recursive printing problem -- reset '_' to NoneGuido van Rossum1997-12-261-3/+8
* Oops -- '(' is also a legal start character of a new format...Guido van Rossum1997-12-191-0/+1
* Oops! Should've renamed dos_8x3 to dos-8x3 here, too.Guido van Rossum1997-12-171-3/+3
* For base 10, cast unsigned long to long before testing overflow.Guido van Rossum1997-12-151-2/+8
* Need a cast when comparing type object in isinstance()Guido van Rossum1997-12-101-1/+1
* Add explicit check for correct next character in format at end ofGuido van Rossum1997-12-091-0/+7
* Fix subtle bug in cleanup code in PyErr_NormalizeException(), detectedGuido van Rossum1997-12-091-2/+2
* Changed the finalization order again so that the reference countGuido van Rossum1997-12-081-13/+18
* Jeff Rush: add definition for S_IFMT for VisualAge C/C++ under OS2.Guido van Rossum1997-12-051-0/+5
* Add the flag RTLD_GLOBAL to the dlopen() options.Guido van Rossum1997-12-021-3/+7
* Make stdin unbuffered too, when PYTHONUNBUFFERED is specified.Guido van Rossum1997-12-021-0/+1
* Support type objects in isinstance().Guido van Rossum1997-12-021-10/+15
* Apply str() to sys.ps1 or sys.ps2 before using them as a prompt, soGuido van Rossum1997-11-251-16/+14
* os2 patch by Jeff RushGuido van Rossum1997-11-223-2/+44
* Plug memory leak in Py_BuildValue when using {...} to construct dictionaries.Guido van Rossum1997-11-201-3/+5