1. 8f7b94e use stack macros by Benjamin Peterson · 15 years ago
  2. b8338ab add two generic macros for peeking and setting in the stack by Benjamin Peterson · 15 years ago
  3. 1a4ceb2 fix grammar by Benjamin Peterson · 15 years ago
  4. d9920c2 remove tmpname support since it's no longer used by Benjamin Peterson · 15 years ago
  5. f67caf8 don't need to add the name 'lambda' as assigned by Benjamin Peterson · 15 years ago
  6. 5ecf57a remove unused 'encoding' member from the compiler struct by Benjamin Peterson · 15 years ago
  7. 8fa3e93 update ast version by Benjamin Peterson · 15 years ago
  8. a72be3b when no module is given in a 'from' relative import, make ImportFrom.module NULL by Benjamin Peterson · 15 years ago
  9. 52c4bec give a better error message when deleting () by Benjamin Peterson · 15 years ago
  10. 5d1ff94 set Print.values to NULL if there are no values by Benjamin Peterson · 15 years ago
  11. d1f5a59 allow importing from a module named None if it has an 'as' clause by Benjamin Peterson · 15 years ago
  12. 565e1b6 prevent import statements from assigning to None by Benjamin Peterson · 15 years ago
  13. 4afbba3 keep the slice.step field as NULL if no step expression is given by Benjamin Peterson · 15 years ago
  14. a6e3474 Add const qualifier to PyErr_SetFromErrnoWithFilename and to by Alexandre Vassalotti · 15 years ago
  15. 4efb5d0 remove check for case handled in sub-function by Benjamin Peterson · 15 years ago
  16. b266481 revert r73361 by Benjamin Peterson · 15 years ago
  17. e5fa5fe remove duplicate check by Benjamin Peterson · 15 years ago
  18. a5a5728 remove error checks already done in set_context() by Benjamin Peterson · 15 years ago
  19. 8ea4ded remove useless assertion by Benjamin Peterson · 15 years ago
  20. 46dbe27 Issue #5330: C functions called with keyword arguments were not reported by by Antoine Pitrou · 15 years ago
  21. 7937d93 Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g by Jeffrey Yasskin · 15 years ago
  22. dd0388a further hint to where the open docs really are by Philip Jenvey · 15 years ago
  23. aafa18a teach the peepholer about SETUP_WITH by Benjamin Peterson · 15 years ago
  24. 944f684 Allow multiple context managers in one with statement, as proposed by Georg Brandl · 15 years ago
  25. 49a6b0e take into account the fact that SETUP_WITH pushes a finally block by Benjamin Peterson · 15 years ago
  26. 1880d8b add a SETUP_WITH opcode by Benjamin Peterson · 15 years ago
  27. 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 15 years ago
  28. 655d835 Issue #6042: by Jeffrey Yasskin · 15 years ago
  29. e5afa3b support building with subversion 1.7 #6094 by Benjamin Peterson · 15 years ago
  30. b24bb27 Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more. by Hirokazu Yamamoto · 15 years ago
  31. 525cffc Move news item to correct section, remove spurious 'see below' from docstring. by R. David Murray · 15 years ago
  32. a3ec697 Issue 5994: add docstrings to marshal. by R. David Murray · 15 years ago
  33. 4c1fe51 don't ignore exceptions from _PyObject_LengthHint by Benjamin Peterson · 15 years ago
  34. af1692a convert some more special methods to use _PyObject_LookupSpecial by Benjamin Peterson · 15 years ago
  35. f7f858d Issue 5954, PyFrame_GetLineNumber: by Jeffrey Yasskin · 15 years ago
  36. a985a3a Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 15 years ago
  37. 01fce5a Don't use PyOS_strnicmp for NaN and Inf detection: it's locale-aware. by Mark Dickinson · 15 years ago
  38. 777e4ff Eliminate some locale-dependent calls to isspace and tolower. by Mark Dickinson · 15 years ago
  39. 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 15 years ago
  40. df108ca Remove format_float and use _PyOS_double_to_string instead. by Mark Dickinson · 15 years ago
  41. 92fcc9c Issue #5864: format(1234.5, '.4') gives misleading result by Mark Dickinson · 15 years ago
  42. 94cc00c Silence warning on Windows. by Eric Smith · 15 years ago
  43. cac7af6 Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. by Eric Smith · 15 years ago
  44. e73cbe7 Fix typo in function name by Mark Dickinson · 15 years ago
  45. 6d6b220 Backport r71967 changes from py3k to trunk. by Mark Dickinson · 15 years ago
  46. 068f065 Issue #5835, deprecate PyOS_ascii_formatd. by Eric Smith · 15 years ago
  47. 95bc980 Issue #5816: by Mark Dickinson · 15 years ago
  48. aca19e6 Backport of some of the work in r71665 to trunk. This reworks much of by Eric Smith · 15 years ago
  49. 1bdf7e9 Issue #1869: Fix a couple of minor round() issues. by Mark Dickinson · 15 years ago
  50. 8e5446f Backport r71704 (add configure check for C99 round function) to trunk. by Mark Dickinson · 15 years ago
  51. 4beb89b copysign shouldn't be declared as static in pymath.c by Mark Dickinson · 15 years ago
  52. 6c59e72 #5580: no need to use parentheses when converterr() argument is actually a type description. by Georg Brandl · 15 years ago
  53. edb5e1e - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with by Matthias Klose · 15 years ago
  54. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 15 years ago
  55. d3f03fa PyErr_NormalizeException may not set an error, so convert the PyErr_SetObject by Georg Brandl · 15 years ago
  56. 238cedc Fix two issues introduced by issue #71031 by changing the signature of by Brett Cannon · 15 years ago
  57. c4f90eb PyImport_AppendInittab() took a char * as a first argument even though that by Brett Cannon · 15 years ago
  58. 985951d fix error handling by Benjamin Peterson · 15 years ago
  59. 4b5c53a In PyErr_GivenExceptionMatches, temporarily bump the recursion by Georg Brandl · 15 years ago
  60. 15ba4da _warnings was importing itself to get an attribute. That's bad if warnings gets by Brett Cannon · 15 years ago
  61. 42f9b4e Issue 5619: Pass MS CRT debug flags into subprocesses by Jesse Noller · 15 years ago
  62. 2696275 Add check for PyDict_Update() error. by Jeremy Hylton · 15 years ago
  63. 88f1c04 Global statements from one function leaked into parallel functions. by Jeremy Hylton · 15 years ago
  64. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 15 years ago
  65. 6ffe852 fix strange errors when setting attributes on tracebacks #4034 by Benjamin Peterson · 15 years ago
  66. 8eba5ed Make marshalling errors a little more informative as to what went wrong by Nick Coghlan · 15 years ago
  67. 6c4cff0 Require implementations for warnings.showwarning() support the 'line' argument. by Brett Cannon · 15 years ago
  68. 68d6852 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with by Jeffrey Yasskin · 15 years ago
  69. 8725dce Issue 5176: special-case string formatting in BINARY_MODULO implementation. This shows a modest (1-3%) speed-up in templating systems, for example. by Collin Winter · 15 years ago
  70. c97c909 Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs. by Mark Dickinson · 15 years ago
  71. 9e58a37 Silence 'arg may be used uninitialized in this function' warning from gcc. by Mark Dickinson · 15 years ago
  72. 81fe093 Implement issue #4285, convert sys.version_info to a named by Eric Smith · 15 years ago
  73. b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago
  74. 12554cb more flags which only work for function blocks by Benjamin Peterson · 15 years ago
  75. da9327f add explanatory comment by Benjamin Peterson · 15 years ago
  76. 9f4f56d On Windows, use the Python 'Activation Context' when loading extensions by Mark Hammond · 15 years ago
  77. 78821dd fix building the core with --disable-unicode by Benjamin Peterson · 15 years ago
  78. e18ef19 allow unicode keyword arguments for the ** syntax #4978 by Benjamin Peterson · 16 years ago
  79. 59ce042 #4077: No need to append \n when calling Py_FatalError by Amaury Forgeot d'Arc · 16 years ago
  80. e3422fa Issue #4893: Use NT threading on CE. by Martin v. Löwis · 16 years ago
  81. 1b3bef2 Issue #4915: Port sysmodule to Windows CE. by Martin v. Löwis · 16 years ago
  82. b3b7d85 Issue #4279: Fix build of parsermodule under Cygwin. by Martin v. Löwis · 16 years ago
  83. abb70e9 Issue 4906: Preserve windows error state across PyThread_get_key_value by Kristján Valur Jónsson · 16 years ago
  84. 0e91938 Issue 4293: Make Py_AddPendingCall() thread safe by Kristján Valur Jónsson · 16 years ago
  85. 3b2a6b8 Issue 3677: Fix import from UNC paths on Windows. by Kristján Valur Jónsson · 16 years ago
  86. 00f2df4 Issue 3582. Improved thread support and TLS for Windows by Kristján Valur Jónsson · 16 years ago
  87. e96d4ea Issue #1180193: When importing a module from a .pyc (or .pyo) file with by Antoine Pitrou · 16 years ago
  88. 0fa10b3 Issue #4817: Remove unused function PyOS_GetLastModificationTime. by Martin v. Löwis · 16 years ago
  89. 796798b fix compilation on non-Windows platforms by Benjamin Peterson · 16 years ago
  90. 5344c99 Issue #4075: Use OutputDebugStringW in Py_FatalError. by Martin v. Löwis · 16 years ago
  91. d6baa70 welcome to 2009, Python! by Benjamin Peterson · 16 years ago
  92. 8d5934b #4748 lambda generators shouldn't return values by Benjamin Peterson · 16 years ago
  93. 4caef5c fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|' by Benjamin Peterson · 16 years ago
  94. d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 16 years ago
  95. ad9b599 #4559: When a context manager's __exit__() method returns an object whose by Amaury Forgeot d'Arc · 16 years ago
  96. 2d873bd Issue 4597: Fix several cases in EvalFrameEx where an exception could be by Jeffrey Yasskin · 16 years ago
  97. 422ce06 Issue #4461: Safety check in parsenumber (ast.c) by Mark Dickinson · 16 years ago
  98. fd8a1ec Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by caching by Jeffrey Yasskin · 16 years ago
  99. 9e6310d always check the return value of NEW_IDENTIFIER by Benjamin Peterson · 16 years ago
  100. dc61901 #3996: On Windows, PyOS_CheckStack is supposed to protect the interpreter from by Amaury Forgeot d'Arc · 16 years ago