| Commit message (Expand) | Author | Age | Files | Lines |
* | Put parentheses around the assignment in the 'while' loop conditional | Brett Cannon | 2004-12-07 | 1 | -1/+1 |
|
|
* | SF patch #1077353: add key= argument to min and max | Raymond Hettinger | 2004-12-03 | 1 | -39/+71 |
|
|
* | Hye-Shik Chang's fix for Bug 875692. | Kurt B. Kaiser | 2004-11-23 | 1 | -0/+6 |
|
|
* | SF bug 1061968: threads: segfault or Py_FatalError at exit | Tim Peters | 2004-11-08 | 1 | -13/+12 |
|
|
* | SF patch 1025636: Check for NULL returns in compile.c:com_import_stmt | Jeremy Hylton | 2004-11-07 | 1 | -4/+14 |
|
|
* | SF patch #1035255: Remove CoreServices / CoreFoundation dependencies in core | Raymond Hettinger | 2004-11-05 | 1 | -158/+67 |
|
|
* | Maintain peepholer's cumlc invariant by updating the running total | Raymond Hettinger | 2004-11-02 | 1 | -0/+4 |
|
|
* | Simplify and future proof NOP counting in the peepholer. | Raymond Hettinger | 2004-11-01 | 1 | -13/+6 |
|
|
* | Fixed a comment and added another one. | Armin Rigo | 2004-10-30 | 1 | -1/+4 |
|
|
* | Adopt some peepholer suggestions from Armin Rigo: | Raymond Hettinger | 2004-10-30 | 1 | -15/+20 |
|
|
* | SF bug #1053819: Segfault in tuple_of_constants | Raymond Hettinger | 2004-10-26 | 1 | -1/+9 |
|
|
* | SF bug #1048870: call arg of lambda not updating | Raymond Hettinger | 2004-10-24 | 1 | -0/+2 |
|
|
* | Patch #975056 - fixes for restartable signals on *BSD. In addition, | Anthony Baxter | 2004-10-13 | 1 | -24/+19 |
|
|
* | SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick | Tim Peters | 2004-10-11 | 2 | -4/+6 |
|
|
* | Revert rev 2.35. It was based on erroneous reasoning -- the current | Tim Peters | 2004-10-10 | 1 | -15/+8 |
|
|
* | PyInterpreterState_New(), PyThreadState_New(): use malloc/free directly. | Tim Peters | 2004-10-10 | 1 | -4/+16 |
|
|
* | find_key(): This routine wasn't thread-correct, and accounts for the | Tim Peters | 2004-10-10 | 1 | -5/+17 |
|
|
* | PyGILState_Release(): If we need to delete the TLS entry for this thread, | Tim Peters | 2004-10-09 | 1 | -8/+15 |
|
|
* | _PyGILState_Init(), PyGILState_Ensure(): Since PyThread_set_key_value() | Tim Peters | 2004-10-09 | 1 | -2/+5 |
|
|
* | Document the results of painful reverse-engineering of the "portable TLS" | Tim Peters | 2004-10-09 | 1 | -6/+84 |
|
|
* | Style guide & consistency changes. No semantic changes. | Tim Peters | 2004-10-09 | 2 | -29/+41 |
|
|
* | Trim trailing whitespace. | Tim Peters | 2004-10-09 | 1 | -8/+8 |
|
|
* | SF patch #1035498: -m option to run a module as a script | Raymond Hettinger | 2004-10-07 | 1 | -0/+16 |
|
|
* | Finalize the freelist of list objects. | Raymond Hettinger | 2004-10-07 | 1 | -0/+1 |
|
|
* | Print verbose messages to stderr. Fixes #1036752. | Martin v. Löwis | 2004-10-03 | 1 | -1/+2 |
|
|
* | Improve error message for augmented assignments to genexps or listcomps. | Raymond Hettinger | 2004-09-29 | 1 | -2/+2 |
|
|
* | Fix two erroneous error messages. | Raymond Hettinger | 2004-09-29 | 1 | -2/+2 |
|
|
* | Replaced a test with an assertion. | Raymond Hettinger | 2004-09-28 | 1 | -3/+1 |
|
|
* | Fix for SF bug #1029475 : reload() doesn't work with PEP 302 loaders. | Phillip J. Eby | 2004-09-23 | 1 | -4/+10 |
|
|
* | SF patch #1031667: Fold tuples of constants into a single constant | Raymond Hettinger | 2004-09-22 | 2 | -12/+93 |
|
|
* | SF bug #1014215: Unspecific errors with metaclass | Raymond Hettinger | 2004-09-16 | 1 | -4/+16 |
|
|
* | SF patch #1007189, multi-line imports, for instance: | Anthony Baxter | 2004-08-31 | 3 | -826/+897 |
|
|
* | Centralize WITH_TSC processing. | Martin v. Löwis | 2004-08-29 | 1 | -37/+3 |
|
|
* | Bypass peepholing of code with lineno tables having intervals >= 255. | Raymond Hettinger | 2004-08-25 | 1 | -4/+8 |
|
|
* | Fix typo in comment and add clarification. | Raymond Hettinger | 2004-08-25 | 1 | -1/+2 |
|
|
* | Patch #1015021: Stop claiming that coerce can return None. | Martin v. Löwis | 2004-08-25 | 1 | -4/+4 |
|
|
* | Simplify chains of conditional jumps. | Raymond Hettinger | 2004-08-25 | 1 | -2/+25 |
|
|
* | Stop producing or using OverflowWarning. PEP 237 thought this would | Tim Peters | 2004-08-25 | 1 | -1/+3 |
|
|
* | Incorporate review comments courtesy of Neal Norwitz: | Raymond Hettinger | 2004-08-24 | 1 | -6/+8 |
|
|
* | SF Patch #1013667: Cleanup Peepholer Output | Raymond Hettinger | 2004-08-23 | 2 | -36/+102 |
|
|
* | Patch #900727: Add Py_InitializeEx to allow embedding without signals. | Martin v. Löwis | 2004-08-19 | 1 | -2/+10 |
|
|
* | Move the bytecode optimizer upstream so that its results are saved in pyc | Raymond Hettinger | 2004-08-18 | 1 | -3/+6 |
|
|
* | This is Mark Russell's patch: | Michael W. Hudson | 2004-08-17 | 2 | -37/+34 |
|
|
* | The attached patch fixes FTBFS on GNU/k*BSD. The problem happens on GNU/k*BSD | Matthias Klose | 2004-08-16 | 1 | -0/+10 |
|
|
* | Correct the order of application for decorators. Meant to be bottom-up and not | Brett Cannon | 2004-08-15 | 1 | -1/+4 |
|
|
* | Fix incorrect comment for (struct compiling)->c_cellvars | Brett Cannon | 2004-08-15 | 1 | -1/+1 |
|
|
* | This is my patch: | Michael W. Hudson | 2004-08-12 | 2 | -2/+34 |
|
|
* | code_new(): Wouldn't compile on Windows, because of gcc'ism. | Tim Peters | 2004-08-12 | 1 | -1/+1 |
|
|
* | Fix bug | Michael W. Hudson | 2004-08-12 | 1 | -27/+88 |
|
|
* | Patch #1005468: Disambiguate "min() or max()" exception string. | Martin v. Löwis | 2004-08-12 | 1 | -3/+4 |
|
|