summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Moved cmp_member() to abstract.c, as PySequence_Contains() [withGuido van Rossum1998-05-221-53/+2
* A bunch of functions are now properly implemented in abstract.c, andGuido van Rossum1998-05-221-356/+40
* Trivial little change: when setting a member to an object, hold theGuido van Rossum1998-05-201-1/+3
* Fix a curious bug: statements like "import sys.time" would succeed,Guido van Rossum1998-05-191-3/+10
* Remove use of RTLD_GLOBAL.Guido van Rossum1998-05-181-6/+4
* Another veeeeeery old patch...Guido van Rossum1998-05-151-9/+11
* In debug mode on MS Windows, DLLs are called foo_d.pyd or foo_d.dll.Guido van Rossum1998-05-151-0/+5
* Improved version of patch for HPUX from David Arnold.Guido van Rossum1998-05-141-4/+1
* New APIs for embedding applications that want to add their own entriesGuido van Rossum1998-05-141-0/+58
* Remove unnecessary PyErr_Clear().Guido van Rossum1998-05-141-1/+0
* Since PyDict_GetItem() can't raise an exception any more, there's noGuido van Rossum1998-05-142-4/+0
* DELETE_FAST should issue an exception when the local variable is undefined.Guido van Rossum1998-05-121-0/+7
* New APIs to write to sys.stdout or sys.stderr using a printf-like interface.Guido van Rossum1998-05-121-0/+90
* Implement round() slightly different, so that for negative ndigits noGuido van Rossum1998-05-091-5/+13
* Support HPUX 10.20 DCE threads.Guido van Rossum1998-05-071-0/+6
* 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