summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Fix signedness of various char variables to stop causing a warning under gcc 4.Brett Cannon2005-06-253-12/+12
* Add comments about PyThreadState and the usage of its fields.Brett Cannon2005-06-251-0/+4
* Fix bug:Michael W. Hudson2005-06-201-15/+53
* You can have more than one thread state for a thread if theyMichael W. Hudson2005-06-161-1/+1
* Fix bugMichael W. Hudson2005-06-131-0/+4
* Remove extraneous format character from PyArg_ParseTuple call inMichael W. Hudson2005-06-131-1/+1
* Fix a couple of crashing-on-malformed data marshal bugs.Michael W. Hudson2005-06-031-6/+8
* This is my patch:Michael W. Hudson2005-06-032-66/+177
* This is my patch:Michael W. Hudson2005-05-271-0/+2
* Patch #1197318: Cygwin case-sensitive import patchJason Tishler2005-05-201-17/+6
* Fix:Michael W. Hudson2005-04-181-1/+1
* Make a handy macro, Py_DEFAULT_RECURSION_LIMIT to allow to defineHye-Shik Chang2005-04-041-2/+5
* I suppose a bug report or even a fix would be a better response, butMichael W. Hudson2005-03-301-1/+2
* Move exception finalisation later in the shutdown process - thisAnthony Baxter2005-03-291-7/+8
* Add 0 to _POSIX_SEMAPHORES. Will backport to 2.4.Martin v. Löwis2005-03-281-1/+3
* Patch #1163249 - Correctly handle _POSIX_SEMAPHORES == -1 to mean noAnthony Baxter2005-03-161-0/+4
* Add two new functions, any() and all().Raymond Hettinger2005-03-111-0/+65
* Allow classes to be defined with empty parentheses. This means thatBrett Cannon2005-03-052-8/+10
* Patch #1115086: support PY_LONGLONG in structmember.Martin v. Löwis2005-03-031-0/+32
* Revert previous checkin on getargs 'L' code. Try to convert allMartin v. Löwis2005-03-031-1/+0
* Patch #802188: better parser error message for non-EOL following line cont.Martin v. Löwis2005-03-031-0/+3
* Clear internal call error in 'L' format. Fixes #723201.Martin v. Löwis2005-03-031-0/+1
* Silence a gcc warning about putting in parentheses around && expressions mixedBrett Cannon2005-03-031-5/+6
* Preserve sign of -0.0 when result is run through marshal.Raymond Hettinger2005-02-231-2/+4
* Document how the pattern recognizer keeps all of its references in bounds.Raymond Hettinger2005-02-211-0/+8
* Teach the peepholer to fold unary operations on constants.Raymond Hettinger2005-02-201-0/+62
* Remove the set conversion which didn't work with: [] in (0,)Raymond Hettinger2005-02-101-53/+1
* Have set conversion replace existing constant if not used elsewhere.Raymond Hettinger2005-02-091-1/+7
* Close the discussion in SF bug 1069160.Guido van Rossum2005-02-081-1/+3
* Adopt Skip's idea to optimize lists of constants in the contextRaymond Hettinger2005-02-071-7/+13
* Transform "x in (1,2,3)" to "x in frozenset([1,2,3])".Raymond Hettinger2005-02-061-1/+48
* Fix bug that allowed future statements virtually anywhere in a module.Jeremy Hylton2005-02-041-2/+1
* Partially revert #1074011; don't try to fflush stdin.Martin v. Löwis2005-01-271-1/+10
* Do not fold a constant if a large sequence will result.Raymond Hettinger2005-01-261-5/+15
* happy new year! (on the trunk)Anthony Baxter2005-01-251-1/+1
* Flush std{in,out,err} before closing it. Fixes #1074011.Martin v. Löwis2005-01-231-3/+10
* Change the name of the macro used by --with-tsc builds to the lessMichael W. Hudson2005-01-181-29/+32
* -X died some time ago; remove a tiny bit of associated cruft.Michael W. Hudson2005-01-181-4/+0
* make thread stack size compile-time tunable on OS/2Andrew MacIntyre2005-01-171-1/+5
* remove unused variableFred Drake2005-01-121-1/+0
* SF 1098985: set objects cannot be marshalledRaymond Hettinger2005-01-111-1/+66
* comment tweakSkip Montanaro2005-01-081-1/+1
* Re-running python with/without the -Qnew flag uses incorrectly optimizedArmin Rigo2005-01-071-6/+3
* Teach the peephole optimizer to fold simple constant expressions.Raymond Hettinger2005-01-021-1/+118
* Any call to marshal.dumps() with the new optional argument 'version' justArmin Rigo2004-12-201-1/+1
* Put parentheses around the assignment in the 'while' loop conditionalBrett Cannon2004-12-071-1/+1
* SF patch #1077353: add key= argument to min and maxRaymond Hettinger2004-12-031-39/+71
* Hye-Shik Chang's fix for Bug 875692.Kurt B. Kaiser2004-11-231-0/+6
* SF bug 1061968: threads: segfault or Py_FatalError at exitTim Peters2004-11-081-13/+12
* SF patch 1025636: Check for NULL returns in compile.c:com_import_stmtJeremy Hylton2004-11-071-4/+14