summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* include local variables when dumping Python stack traceSkip Montanaro2004-04-021-9/+36
* Fix support for the "prog" keyword to the OptionParser constructor, as wellFred Drake2004-04-012-3/+24
* fix typo that wasn't properly fixed in revision 1.144Fred Drake2004-04-011-1/+1
* Bump the magic number to avoid sharing bytecode between 2.3 and 2.4.Jeremy Hylton2004-04-011-32/+14
* [Bugfix candidate] Escape traceback type and value. There are probably addit...Andrew M. Kuchling2004-03-311-1/+2
* Patch #924497: find(1) all files with /usr/local/bin/python in them.Martin v. Löwis2004-03-311-5/+7
* When /tmp has certain sticky bits set, newly created subdirectoriesGuido van Rossum2004-03-311-0/+1
* add a heavy box around warning notices to make them really stand out in theFred Drake2004-03-313-1/+31
* add missing and forthcoming releasesFred Drake2004-03-311-0/+2
* Emphasize the requirement that Python.h be included first more strongly.Fred Drake2004-03-312-6/+12
* added scripts to the list of files automatically included in theFred Drake2004-03-311-0/+1
* OS/2 VACPP build updates/fixesAndrew MacIntyre2004-03-295-5/+6
* Added a comment about the unreferenced PyThreadState.tick_counterTim Peters2004-03-291-11/+18
* fix typoAndrew M. Kuchling2004-03-291-1/+1
* Insert missing pronounRaymond Hettinger2004-03-281-2/+2
* SF bug 924242: socket._fileobject._getclosed() returns wrong valueTim Peters2004-03-282-1/+9
* add usage() function, -h(elp) flag and long versions of short flagsSkip Montanaro2004-03-271-8/+18
* - add entry for complex numberSkip Montanaro2004-03-271-22/+42
* Revert 1.51 booleans so that sre will still run on old pythons.Raymond Hettinger2004-03-271-6/+6
* Simple Optimizations:Raymond Hettinger2004-03-261-73/+92
* Remove unnecessary test. (Thanks Skip)Raymond Hettinger2004-03-261-6/+0
* remove out-of-date warningFred Drake2004-03-261-5/+0
* Fix test failure for test_tcl on OS/X and Windows if aDavid Ascher2004-03-261-7/+1
* Marshal clean-up (SF patch #873224)Armin Rigo2004-03-263-70/+66
* Simple optimizations:Raymond Hettinger2004-03-261-47/+69
* Update timeit example to reflect current performance.Raymond Hettinger2004-03-261-3/+3
* make sure the default manifest generation includes files identified asFred Drake2004-03-252-0/+6
* Added more Windows version names (thanks to Thomas Heller).Marc-André Lemburg2004-03-251-29/+23
* Fix last patch to be backwards-compatible with Python 1.5.2 .Brett Cannon2004-03-251-12/+25
* Fixed a caching bug in platform.platform() where the argument of 'terse' wasBrett Cannon2004-03-252-9/+12
* Note that reading from a socket may not always return all of theFred Drake2004-03-251-0/+4
* - make sure the methods minidom adds to the basic DOM are attributedFred Drake2004-03-251-15/+10
* Get rid of gcc warning.Hye-Shik Chang2004-03-251-1/+2
* include the right index sourcesFred Drake2004-03-251-2/+2
* remove duplicate use of the meta-data labelFred Drake2004-03-251-1/+0
* Correct code to advance ptr to be well-formed C.Martin v. Löwis2004-03-251-1/+1
* fix typoFred Drake2004-03-251-1/+1
* note that distutils API docs are included in "Distributing PythonFred Drake2004-03-251-1/+2
* improve the very-high-level API docs (contributed by Jeff Epler)Fred Drake2004-03-251-34/+180
* Defer compilation of regular expressions until first use.Martin v. Löwis2004-03-251-3/+7
* Remove note that PyErr_SetInterrupt() is obsolete; add comment about theFred Drake2004-03-251-1/+3
* Use True/False instead of 0/1 for character classes.Martin v. Löwis2004-03-251-6/+6
* SF bug: #921927: Fixed a typo/thinko spelling "parameter" as "paramter"Raymond Hettinger2004-03-252-3/+3
* Ensure super() lookup of descriptor from classmethod works (SF #743627)Phillip J. Eby2004-03-252-1/+22
* A few more PyThreadState_Get to PyThreadState_GET conversionsNicholas Bastin2004-03-253-3/+3
* fix name in setacl method doc stringPiers Lauder2004-03-251-1/+1
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-248-26/+26
* Enable the profiling of C functions (builtins and extensions)Nicholas Bastin2004-03-2410-15/+145
* Add test case for unicode(somestring, "idna").Martin v. Löwis2004-03-241-1/+6
* Replace sequential split/join calls on strings with a single replace call.Brett Cannon2004-03-232-11/+5