1. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  2. 7624674 Use Py_ssize_t for PyArg_UnpackTuple arguments. by Martin v. Löwis · 18 years ago
  3. e36dce6 Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. by Martin v. Löwis · 18 years ago
  4. ca82a8b Move #include to outside "extern C {}", before Tim figures out it'll break VC++. by Thomas Wouters · 18 years ago
  5. e4d3a72 Include code.h more sanely. by Thomas Wouters · 18 years ago
  6. 090b3dd No need to export PySTEntry_New, it is only used in symtable.c by Neal Norwitz · 18 years ago
  7. e42e405 Martin owns PEP 353 and did most of the work by Neal Norwitz · 18 years ago
  8. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  9. a829313 Remove asdl_seq_APPEND() and simplify asdl seq implementation. by Jeremy Hylton · 18 years ago
  10. 77f1bb2 Real arena implementation by Jeremy Hylton · 18 years ago
  11. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  12. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  13. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  14. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  15. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 18 years ago
  16. ab51f5f Per discussion on python-dev, remove CO_GENERATOR_ALLOWED. Leave comment about not removing yet. by Neal Norwitz · 18 years ago
  17. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  18. 0090a4c Generators have been permanent for a while. This comment is no longer applicable. by Neal Norwitz · 18 years ago
  19. 2d65b55 Fix intptr_t fallback for Py_ssize_t. by Martin v. Löwis · 18 years ago
  20. 4129068 Change _PyObject_GC_Resize to expect Py_ssize_t. by Martin v. Löwis · 18 years ago
  21. 97c65a8 Use Py_ssize_t for field sizes and offsets. by Martin v. Löwis · 18 years ago
  22. 44e379d Allow for ssize_t field offsets. by Martin v. Löwis · 18 years ago
  23. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  24. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  25. b941825 Fix PyGC_Collect() to be exported from the built DLL on Windows. (Fix given by Barry Warsaw · 18 years ago
  26. 8208b64 Fix icc warnings: single bit fields should be unsigned by Neal Norwitz · 18 years ago
  27. 43b5780 Drop sys.build_number. Add sys.subversion. by Martin v. Löwis · 18 years ago
  28. c3d12ac const poisoning, spreading to fix new const warnings in _winreg.c. by Tim Peters · 19 years ago
  29. 2a38a86 Expose Subversion revision number (calculated via "svnversion .") to Python. by Barry Warsaw · 19 years ago
  30. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  31. cc117db moved magic into structure (mainly to simplify the client code) by Fredrik Lundh · 19 years ago
  32. d7a4288 renamed dispatch -> capi to match other CAPI implementations by Fredrik Lundh · 19 years ago
  33. c334504 added cobject-based expat dispatch mechanism to pyexpat by Fredrik Lundh · 19 years ago
  34. 897ff81 SF #1373150, diffs in working copy after a build by Neal Norwitz · 19 years ago
  35. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  36. 7b5a604 Whoops, checkin consistent versions of *all* files to stop polluting by Neal Norwitz · 19 years ago
  37. 6576bd8 Prevent name pollution by making lots of internal functions static. by Neal Norwitz · 19 years ago
  38. 2576c97 _PyUnicode_IsWhitespace(), by Tim Peters · 19 years ago
  39. 921fa85 use PyAPI_FUNC instead of DL_IMPORT. are we going to deprecate the old non-Py PREFIXED macros, etc? by Neal Norwitz · 19 years ago
  40. 62c2fac Do not pollute name block_ty, prefix with _Py_ by Neal Norwitz · 19 years ago
  41. 38eb50b use PyAPI_FUNC instead of DL_IMPORT. are we going to deprecate the old non-Py PREFIXED macros, etc? by Neal Norwitz · 19 years ago
  42. 8b528b2 Fix private name mangling. The symtable also must do mangles so that by Neil Schemenauer · 19 years ago
  43. f3ddaee Correct error to PyRun_SimpleString macro introduced in AST merge. by Mark Hammond · 19 years ago
  44. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  45. 358d938 Remove INT_MIN that came from the AST merge. by Neal Norwitz · 19 years ago
  46. 58a7985 Use the newer names for APIs after the AST merge by Neal Norwitz · 19 years ago
  47. 6d777bb Remove dup declarations after AST merge by Neal Norwitz · 19 years ago
  48. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  49. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  50. 8ee3e5a - Changes donated by Elemental Security to make it work on AIX 5.3 by Guido van Rossum · 19 years ago
  51. 539c662 - Changes donated by Elemental Security to make it work on HP-UX 11 on by Guido van Rossum · 19 years ago
  52. a47d1c0 SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain by Walter Dörwald · 19 years ago
  53. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  54. c47e01d Numerous fix-ups to C API and docs. Added tests for C API. by Raymond Hettinger · 19 years ago
  55. beb3101 Add a C API for sets and frozensets. by Raymond Hettinger · 19 years ago
  56. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  57. bc841a1 * Bring in INIT_NONZERO_SET_SLOTS macro from dictionary code. by Raymond Hettinger · 19 years ago
  58. 5ba0cbe * set_new() doesn't need to zero the structure a second time after tp_alloc by Raymond Hettinger · 19 years ago
  59. 67962ab Model set.pop() after dict.popitem(). by Raymond Hettinger · 19 years ago
  60. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  61. d794666 * Improve code for the empty frozenset singleton: by Raymond Hettinger · 19 years ago
  62. 9f1a679 Revised the set() and frozenset() implementaion to use its own internal by Raymond Hettinger · 19 years ago
  63. 08c02db [ 1243081 ] repair typos by Georg Brandl · 19 years ago
  64. 55fa66d Add comments about PyThreadState and the usage of its fields. by Brett Cannon · 19 years ago
  65. df88846 This is my patch: by Michael W. Hudson · 19 years ago
  66. ba283e2 This is my patch: by Michael W. Hudson · 19 years ago
  67. 96d743e Patch #1115086: support PY_LONGLONG in structmember. by Martin v. Löwis · 19 years ago
  68. 4bf108d Patch #802188: better parser error message for non-EOL following line cont. by Martin v. Löwis · 19 years ago
  69. 6651748 Remove PyRange_New(). by Raymond Hettinger · 20 years ago
  70. a3bc546 post 2.4 release machinations by Anthony Baxter · 20 years ago
  71. e48bad7 preparing for 2.4 final (wooooooo!) by Anthony Baxter · 20 years ago
  72. a9cadcd Correct the handling of 0-termination of PyUnicode_AsWideChar() by Marc-André Lemburg · 20 years ago
  73. 49d4213 preparing for rc1 by Anthony Baxter · 20 years ago
  74. ec6eb36 SF patch #1035255: Remove CoreServices / CoreFoundation dependencies in core by Raymond Hettinger · 20 years ago
  75. 22b3b47 release bit by Anthony Baxter · 20 years ago
  76. 57341c3 SF patch #1056231: typo in comment (unicodeobject.h) by Raymond Hettinger · 20 years ago
  77. ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 20 years ago
  78. 89a3946 Wrote down the invariants of some common objects whose structure is by Armin Rigo · 20 years ago
  79. 78f58ab bump the version number prior to release by Fred Drake · 20 years ago
  80. 7f468f2 SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick by Tim Peters · 20 years ago
  81. db29e0f SF patch #1035498: -m option to run a module as a script by Raymond Hettinger · 20 years ago
  82. fb09f0e Finalize the freelist of list objects. by Raymond Hettinger · 20 years ago
  83. 862f059 Introduced a Py_IS_NAN macro, which probably works on the major platforms by Tim Peters · 20 years ago
  84. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  85. 7790c3b Removed redundant declaration of _PyLong_NumBits(). by Tim Peters · 20 years ago
  86. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  87. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  88. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  89. 876032e onward and upward by Anthony Baxter · 20 years ago
  90. 47e52ee SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  91. 0973b99 SF patch 936813: fast modular exponentiation by Tim Peters · 20 years ago
  92. c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 20 years ago
  93. 336e85f Patch #900727: Add Py_InitializeEx to allow embedding without signals. by Martin v. Löwis · 20 years ago
  94. 0d2a75c Patch #1006003: Cygwin standard module build problems by Jason Tishler · 20 years ago
  95. e9ddfbb SF #989185: Drop unicode.iswide() and unicode.width() and add by Hye-Shik Chang · 20 years ago
  96. b5047fd Add a workaround for a problem that UTF-8 strings can be corrupted by Hye-Shik Chang · 20 years ago
  97. 7bc58a3 on to a2! by Anthony Baxter · 20 years ago
  98. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  99. 4ecd8cd Fix typo in comment by Neal Norwitz · 20 years ago
  100. 93677f0 * drop the unreasonable list invariant that ob_item should never come back by Armin Rigo · 20 years ago