summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* For Windows, need to add #include <windows.h>.Guido van Rossum1999-12-201-0/+1
* Support for selecting the correct dynload_<platform>.c file.Guido van Rossum1999-12-201-0/+12
* In _PyImport_Init(), dynamically construct the table of legal suffixesGuido van Rossum1999-12-201-5/+33
* Some rearrangements for the importdl.c restructuring.Guido van Rossum1999-12-201-2/+27
* Moved most of the platform-specific code to dynload_<platform>.c files.Guido van Rossum1999-12-201-1029/+26
* The old platform-specific contents of importdl.c, broken down into oneGuido van Rossum1999-12-2010-0/+1347
* The cleanup code in com-init() at label fail_0000 should removeGuido van Rossum1999-12-201-1/+1
* Patch by Vladimir Marangozov, inspired by a bug report from GaryGuido van Rossum1999-11-161-1/+7
* Change the last PyErr_Format %s format to %.400s.Guido van Rossum1999-11-151-1/+1
* Fix PR117. The error message is "keywords must be strings". PerhapsGuido van Rossum1999-10-261-0/+5
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-121-42/+67
* In PySys_GetObject(), it's possible that tstate->interp->sysdict isGuido van Rossum1999-10-051-0/+2
* Tim Peters fixed PR#75: very long lines cause incorrect tracebacks.Guido van Rossum1999-09-181-2/+11
* Tim Peters writes:Guido van Rossum1999-09-151-1/+1
* Tim Peters discovered a bug in the Python-supplied getopt():Guido van Rossum1999-09-131-1/+2
* call_trace(): A fix for PR#73, if an exception occurred in theBarry Warsaw1999-09-081-0/+8
* Vladimir Marangozov fixes an AIX-specific problem, writing:Guido van Rossum1999-08-041-4/+7
* Fixed order of parameters in slice() docstring. The Library ReferenceFred Drake1999-07-191-1/+1
* Marc-Andre Lemburg discovered that the switch from .pyc to .pyo files,Guido van Rossum1999-07-081-2/+2
* Patch by Tim Peters:Guido van Rossum1999-06-222-2/+17
* CRITICAL PATCH!Guido van Rossum1999-06-181-5/+23
* # Darn! Local variable l declared but not used in abstract_issubclass().Guido van Rossum1999-06-171-1/+1
* Patch by Jim Fulton (code style tweaked a bit) to supportGuido van Rossum1999-06-161-17/+94
* Allow longer strings (up to 80 chars each) for version, build,Guido van Rossum1999-04-221-2/+2
* Patch by Christian Tismer for Win32, to use FormatMessage() instead ofGuido van Rossum1999-04-211-2/+29
* While I can't really test this thoroughly, Pat Knight and the SolarisGuido van Rossum1999-04-131-1/+2
* Win/CE thread support by Mark Hammond.Guido van Rossum1999-04-081-0/+201
* Alas, get rid of the Win specific hack to ask the user to press ReturnGuido van Rossum1999-04-071-47/+0
* Changes by Mark Hammond for Windows CE. Mostly of the formGuido van Rossum1999-04-075-0/+18
* Remove unused variable from complex_from_string() code.Guido van Rossum1999-04-071-1/+1
* Patch by Nick and Stephanie Lockwood to implement complex() with a stringGuido van Rossum1999-03-251-4/+133
* New builtin buffer() creates a derived read-only buffer from anyGuido van Rossum1999-03-191-0/+24
* Rob Riggs wrote:Guido van Rossum1999-03-151-2/+2
* Always test for an error return (usually NULL or -1) without settingGuido van Rossum1999-03-091-3/+4
* (initerrors): Make sure that the exception tuples ("base-classes" whenBarry Warsaw1999-02-241-8/+18
* Patch by Tim Peters to improve the range checks for range() andGuido van Rossum1999-02-231-30/+48
* Patch by Tommy Burnette to accept an arbitrary sequence when "(...)"Guido van Rossum1999-02-171-7/+10
* initmain(): Nailed a memory leak. bimod must be DECREF'd!Barry Warsaw1999-01-291-0/+1
* bltin_exc[]: EnvironmentError is not a "leaf exception", so set it'sBarry Warsaw1999-01-291-1/+1
* builtin_map(): A better fix for the previous leak plug (rememberBarry Warsaw1999-01-281-3/+6
* Implement -OO; "unsafe" optimization that removes docstrings.Guido van Rossum1999-01-281-0/+3
* builtin_map(): Nailed memory leak. PyList_Append() borrows aBarry Warsaw1999-01-281-0/+1
* builtin_complex(): Nailed memory leak. This one's in the instanceBarry Warsaw1999-01-271-0/+1
* PyImport_ReloadModule(): Nailed a small memory leak. In theBarry Warsaw1999-01-271-0/+1
* Patches by William Lewis for Nextstep descendants.Guido van Rossum1999-01-273-11/+74
* err_input(): Nailed a small memory leak. If the error is E_INTR, theBarry Warsaw1999-01-271-1/+2
* _PySys_Init(): Nailed small memory leak. The stringobject created forBarry Warsaw1999-01-271-0/+1
* Change rare occurrences of #if HAVE_LONG_LONG to #ifdef.Guido van Rossum1999-01-252-3/+3
* Jim Ahlstrom patch: the module doc string is too long for 16-bit VCGuido van Rossum1999-01-141-1/+5
* Avoid overflow if possible in calculations for range(); reportGuido van Rossum1999-01-121-7/+28