summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* SF patch #1035255: Remove CoreServices / CoreFoundation dependencies in coreRaymond Hettinger2004-11-051-158/+67
* Maintain peepholer's cumlc invariant by updating the running totalRaymond Hettinger2004-11-021-0/+4
* Simplify and future proof NOP counting in the peepholer.Raymond Hettinger2004-11-011-13/+6
* Fixed a comment and added another one.Armin Rigo2004-10-301-1/+4
* Adopt some peepholer suggestions from Armin Rigo:Raymond Hettinger2004-10-301-15/+20
* SF bug #1053819: Segfault in tuple_of_constantsRaymond Hettinger2004-10-261-1/+9
* SF bug #1048870: call arg of lambda not updatingRaymond Hettinger2004-10-241-0/+2
* Patch #975056 - fixes for restartable signals on *BSD. In addition,Anthony Baxter2004-10-131-24/+19
* SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by NickTim Peters2004-10-112-4/+6
* Revert rev 2.35. It was based on erroneous reasoning -- the currentTim Peters2004-10-101-15/+8
* PyInterpreterState_New(), PyThreadState_New(): use malloc/free directly.Tim Peters2004-10-101-4/+16
* find_key(): This routine wasn't thread-correct, and accounts for theTim Peters2004-10-101-5/+17
* PyGILState_Release(): If we need to delete the TLS entry for this thread,Tim Peters2004-10-091-8/+15
* _PyGILState_Init(), PyGILState_Ensure(): Since PyThread_set_key_value()Tim Peters2004-10-091-2/+5
* Document the results of painful reverse-engineering of the "portable TLS"Tim Peters2004-10-091-6/+84
* Style guide & consistency changes. No semantic changes.Tim Peters2004-10-092-29/+41
* Trim trailing whitespace.Tim Peters2004-10-091-8/+8
* SF patch #1035498: -m option to run a module as a scriptRaymond Hettinger2004-10-071-0/+16
* Finalize the freelist of list objects.Raymond Hettinger2004-10-071-0/+1
* Print verbose messages to stderr. Fixes #1036752.Martin v. Löwis2004-10-031-1/+2
* Improve error message for augmented assignments to genexps or listcomps.Raymond Hettinger2004-09-291-2/+2
* Fix two erroneous error messages.Raymond Hettinger2004-09-291-2/+2
* Replaced a test with an assertion.Raymond Hettinger2004-09-281-3/+1
* Fix for SF bug #1029475 : reload() doesn't work with PEP 302 loaders.Phillip J. Eby2004-09-231-4/+10
* SF patch #1031667: Fold tuples of constants into a single constantRaymond Hettinger2004-09-222-12/+93
* SF bug #1014215: Unspecific errors with metaclassRaymond Hettinger2004-09-161-4/+16
* SF patch #1007189, multi-line imports, for instance:Anthony Baxter2004-08-313-826/+897
* Centralize WITH_TSC processing.Martin v. Löwis2004-08-291-37/+3
* Bypass peepholing of code with lineno tables having intervals >= 255.Raymond Hettinger2004-08-251-4/+8
* Fix typo in comment and add clarification.Raymond Hettinger2004-08-251-1/+2
* Patch #1015021: Stop claiming that coerce can return None.Martin v. Löwis2004-08-251-4/+4
* Simplify chains of conditional jumps.Raymond Hettinger2004-08-251-2/+25
* Stop producing or using OverflowWarning. PEP 237 thought this wouldTim Peters2004-08-251-1/+3
* Incorporate review comments courtesy of Neal Norwitz:Raymond Hettinger2004-08-241-6/+8
* SF Patch #1013667: Cleanup Peepholer OutputRaymond Hettinger2004-08-232-36/+102
* Patch #900727: Add Py_InitializeEx to allow embedding without signals.Martin v. Löwis2004-08-191-2/+10
* Move the bytecode optimizer upstream so that its results are saved in pycRaymond Hettinger2004-08-181-3/+6
* This is Mark Russell's patch:Michael W. Hudson2004-08-172-37/+34
* The attached patch fixes FTBFS on GNU/k*BSD. The problem happens on GNU/k*BSDMatthias Klose2004-08-161-0/+10
* Correct the order of application for decorators. Meant to be bottom-up and notBrett Cannon2004-08-151-1/+4
* Fix incorrect comment for (struct compiling)->c_cellvarsBrett Cannon2004-08-151-1/+1