1. 9b10f7e Convert relevant dict internals to Py_ssize_t. by Tim Peters · 18 years ago
  2. 80f8e80 needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only), by Fredrik Lundh · 18 years ago
  3. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago
  4. 7a83089 needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in- by Fredrik Lundh · 18 years ago
  5. 7df5e7f Patch 1145039. by Tim Peters · 18 years ago
  6. b3167cb needforspeed: added rpartition implementation by Fredrik Lundh · 18 years ago
  7. 57640f5 needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" by Fredrik Lundh · 18 years ago
  8. 95e2a91 use Py_LOCAL also for string and unicode objects by Fredrik Lundh · 18 years ago
  9. b8b3c8e needforspeed: added Py_LOCAL macro, based on the LOCAL macro used by Fredrik Lundh · 18 years ago
  10. 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 18 years ago
  11. da53afa A new table to help string->integer conversion was added yesterday to by Tim Peters · 18 years ago
  12. 44aa9f71 Fix incorrect documentation for the Py_IS_FINITE(X) macro. by Kristján Valur Jónsson · 18 years ago
  13. cc1ecf4 Fix another typo by Andrew M. Kuchling · 18 years ago
  14. 1d2576d Fix comment typos by Andrew M. Kuchling · 18 years ago
  15. f94323f Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for this and it is more efficient than to use !Py_IS_INFINITE(X) && !Py_IS_NAN(X). No change on other platforms by Kristján Valur Jónsson · 18 years ago
  16. cebbefc Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. by Richard Jones · 18 years ago
  17. 7c88dcc Merge from rjones-funccall branch. by Richard Jones · 18 years ago
  18. 3d885e0 needforspeed: check first *and* last character before doing a full memcmp by Fredrik Lundh · 18 years ago
  19. 8a8e05a needforspeed: use memcpy for "long" strings; use a better algorithm by Fredrik Lundh · 18 years ago
  20. f1d60a5 needforspeed: speed up unicode repeat, unicode string copy by Fredrik Lundh · 18 years ago
  21. a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 18 years ago
  22. 9df4e6f - Add new Warning class, ImportWarning by Thomas Wouters · 18 years ago
  23. c7d0032 2.5a2 by Anthony Baxter · 18 years ago
  24. 1ddba60 Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses by Thomas Wouters · 18 years ago
  25. a4ebc13 Refactor: Move code that uses co_lnotab from ceval to codeobject by Jeremy Hylton · 18 years ago
  26. 45294a9 Remove types from type_list if they have no objects by Martin v. Löwis · 18 years ago
  27. 3fca463 C++ compile cleanup: proper declaration of _Py_BuildValue_SizeT by Skip Montanaro · 18 years ago
  28. 54e964d C++ compilation cleanup: Migrate declaration of by Skip Montanaro · 18 years ago
  29. de2acf6 frame_traverse(): Use the standard Py_VISIT macro. by Tim Peters · 18 years ago
  30. 9d2ced8 There were no comments explaining what Py_CLEAR() did or by Tim Peters · 18 years ago
  31. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  32. 0cc56e5 Introduce asdl_int_seq, to hold cmpop_ty. by Martin v. Löwis · 18 years ago
  33. 869bacd revert - breaks build of Python/ast.c w/ gcc by Skip Montanaro · 18 years ago
  34. b940671 Use union to discriminate pointer types from enum/int types. by Skip Montanaro · 18 years ago
  35. 8920bf2 Don't set gi_frame to Py_None, use NULL instead, eliminating some insane by Phillip J. Eby · 18 years ago
  36. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  37. 01b8101 Make _kind types global for C++ compilation. by Martin v. Löwis · 18 years ago
  38. 1cf3964 C++ already defines a perfectly good 'bool'. Use that. by Anthony Baxter · 18 years ago
  39. 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 18 years ago
  40. 3b1c01d Fixed error in comment for new PY_SSIZE_T_MIN. by Tim Peters · 18 years ago
  41. c48c8db Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve. by Martin v. Löwis · 18 years ago
  42. 36458ee aargh. Don't make last minute re-organisations before checkin! by Anthony Baxter · 18 years ago
  43. 46854bc PyAPI_FUNC() the PyArg_.*SizeT forms. Without this, cygwin has hysterics. by Anthony Baxter · 18 years ago
  44. 2f327c1 Add lineno, col_offset to excephandler to enable future fix for by Jeremy Hylton · 18 years ago
  45. ebed3f6 preparation for 2.5a1 by Anthony Baxter · 18 years ago
  46. cbce280 Don't abbreviate ABS, use long name ABSOLUTE. by Neal Norwitz · 18 years ago
  47. c7403ed Add a clause to the PY_FORMAT_SIZE_T to stop warnings on 32 bit intel by Anthony Baxter · 18 years ago
  48. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 18 years ago
  49. c9d78aa Years in the making. by Tim Peters · 18 years ago
  50. badc086 Stop duplicating code and handle slice indices consistently and correctly by Neal Norwitz · 18 years ago
  51. f303261 Remove false information from the comment and reformat it like other by Hye-Shik Chang · 18 years ago
  52. 3dd8be4 Get Py_DEPRECATED to work with gcc 4.x too by Neal Norwitz · 18 years ago
  53. ae1d0c9 Introduced symbol PY_FORMAT_SIZE_T. See the new comments by Tim Peters · 18 years ago
  54. abb02e5 Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass by Walter Dörwald · 18 years ago
  55. 5bd7c02 Avoid forward-declaring the methods array. by Martin v. Löwis · 18 years ago
  56. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 18 years ago
  57. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  58. 7b216c5 Make PyGC_Collect() use Py_ssize_t. by Neal Norwitz · 18 years ago
  59. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 18 years ago
  60. 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 18 years ago
  61. 8c49c82 Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. by Neal Norwitz · 18 years ago
  62. 6fd92dc Added words about what PyArena_Malloc() does. by Tim Peters · 18 years ago
  63. cb9426b Beefed up description of what this does; new XXX. by Tim Peters · 18 years ago
  64. 5f4390f New XXX pointing out errors in the description of by Tim Peters · 18 years ago
  65. 8cfaa0e Trimmed trailing whitespace. by Tim Peters · 18 years ago
  66. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  67. 6db0e00 Change GC refcount to Py_ssize_t. by Martin v. Löwis · 18 years ago
  68. 056a69c Reconst parameters that lost their const in the AST merge. by Martin v. Löwis · 18 years ago
  69. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  70. 7624674 Use Py_ssize_t for PyArg_UnpackTuple arguments. by Martin v. Löwis · 18 years ago
  71. e36dce6 Make ob_refcnt and tp_maxalloc (and friends) Py_ssize_t. by Martin v. Löwis · 18 years ago
  72. ca82a8b Move #include to outside "extern C {}", before Tim figures out it'll break VC++. by Thomas Wouters · 18 years ago
  73. e4d3a72 Include code.h more sanely. by Thomas Wouters · 18 years ago
  74. 090b3dd No need to export PySTEntry_New, it is only used in symtable.c by Neal Norwitz · 18 years ago
  75. e42e405 Martin owns PEP 353 and did most of the work by Neal Norwitz · 18 years ago
  76. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  77. a829313 Remove asdl_seq_APPEND() and simplify asdl seq implementation. by Jeremy Hylton · 18 years ago
  78. 77f1bb2 Real arena implementation by Jeremy Hylton · 18 years ago
  79. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  80. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  81. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  82. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  83. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 18 years ago
  84. ab51f5f Per discussion on python-dev, remove CO_GENERATOR_ALLOWED. Leave comment about not removing yet. by Neal Norwitz · 18 years ago
  85. c255c7b Bug #1086854: Rename PyHeapType members adding ht_ prefix. by Georg Brandl · 18 years ago
  86. 0090a4c Generators have been permanent for a while. This comment is no longer applicable. by Neal Norwitz · 18 years ago
  87. 2d65b55 Fix intptr_t fallback for Py_ssize_t. by Martin v. Löwis · 18 years ago
  88. 4129068 Change _PyObject_GC_Resize to expect Py_ssize_t. by Martin v. Löwis · 18 years ago
  89. 97c65a8 Use Py_ssize_t for field sizes and offsets. by Martin v. Löwis · 18 years ago
  90. 44e379d Allow for ssize_t field offsets. by Martin v. Löwis · 18 years ago
  91. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  92. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  93. b941825 Fix PyGC_Collect() to be exported from the built DLL on Windows. (Fix given by Barry Warsaw · 19 years ago
  94. 8208b64 Fix icc warnings: single bit fields should be unsigned by Neal Norwitz · 19 years ago
  95. 43b5780 Drop sys.build_number. Add sys.subversion. by Martin v. Löwis · 19 years ago
  96. c3d12ac const poisoning, spreading to fix new const warnings in _winreg.c. by Tim Peters · 19 years ago
  97. 2a38a86 Expose Subversion revision number (calculated via "svnversion .") to Python. by Barry Warsaw · 19 years ago
  98. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  99. cc117db moved magic into structure (mainly to simplify the client code) by Fredrik Lundh · 19 years ago
  100. d7a4288 renamed dispatch -> capi to match other CAPI implementations by Fredrik Lundh · 19 years ago