summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* SF bug #887946, segfault if redirecting directoryNeal Norwitz2005-10-031-0/+9
* - Fix segfault with invalid coding.Neal Norwitz2005-10-021-1/+1
* Forward port bugfix:Michael W. Hudson2005-09-301-0/+4
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-3/+3
* clean-up tracing of C functions. In particular, don't call the trace funcArmin Rigo2005-09-201-26/+31
* Removed a check "if (args != NULL)" which is always True and makes no sense.Armin Rigo2005-09-201-5/+3
* Don't call memset() before checking that the ptr is not NULL.Armin Rigo2005-09-201-1/+1
* patch [ 1119423 ] python -c readlink()s and stat()s '-c'Georg Brandl2005-09-151-3/+3
* bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault.Georg Brandl2005-09-151-0/+7
* Complete format code support in getargs.c::skipitem(), which is called whenGeorg Brandl2005-09-141-59/+39
* - Changes donated by Elemental Security to make it work on AIX 5.3Guido van Rossum2005-09-141-0/+12
* - Changes donated by Elemental Security to make it work on HP-UX 11 onGuido van Rossum2005-09-141-0/+14
* Patch #1290454: Fix reload() error message when parent module is not inGeorg Brandl2005-09-141-2/+3
* Whitespace normalization.Georg Brandl2005-08-311-7/+7
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-0/+26
* Forward UnicodeDecodeError into SyntaxError for source encoding errors.Martin v. Löwis2005-08-241-5/+7
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-211-0/+12
* Add a C API for sets and frozensets.Raymond Hettinger2005-08-161-4/+2
* Port from the Python 2.4 branch, patches for SF bug # 900092,Barry Warsaw2005-08-151-8/+14
* com_yield_expr(): Squash new compiler wng about unreferenced local.Tim Peters2005-08-031-1/+0
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-024-126/+212
* * Improve code for the empty frozenset singleton:Raymond Hettinger2005-08-011-0/+1
* Fix cleanup DECREF logic in builtin_filter function.Georg Brandl2005-07-191-6/+6
* bug 1234979 additionGeorg Brandl2005-07-091-2/+2
* bug [ 1234979 ] Lock.acquire treats only 1 as TrueGeorg Brandl2005-07-081-1/+1
* 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