summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Mark discovered a bug in his patch: he didn't *use* PyExc_WindowsErrorGuido van Rossum2000-03-021-1/+1
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-293-21/+21
* Allow using long integers as slice indexesAndrew M. Kuchling2000-02-231-2/+34
* Remove comment that Guido agree's doesn't make sense:Fred Drake2000-02-211-2/+0
* Mark pointed out a buglet in his patch: i < _sys_nerr isn't strongGuido van Rossum2000-02-211-1/+1
* Patch by Mark Hammond:Guido van Rossum2000-02-171-15/+75
* Changes by Mark Hammond related to the new WindowsError exception.Guido van Rossum2000-02-171-0/+6
* Patch by Jack Jansen:Guido van Rossum2000-02-141-0/+12
* The rest of the changes by Trent Mick and Dale Nagata for warning-freeGuido van Rossum2000-01-202-1/+5
* Fix a bug in exec_statement() noted incidentally by Tim Peters inGuido van Rossum2000-01-121-20/+13
* Adjusted apply() docstring based on comments from Gerrit HollFred Drake1999-12-231-3/+4
* Cleanup patches from Greg Stein:Guido van Rossum1999-12-2211-75/+64
* Vladimir Marangozov:Guido van Rossum1999-12-211-1/+1
* 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