1. 960b9b7 Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, by Jeffrey Yasskin · 17 years ago
  2. a3c8c10 Thomas Herve explained to me that PyCrypto depends on the constants. I'm adding the aliases because C code for Python 2.x should compile under 2.6 as well. The aliases aren't available in Python 3.x though. by Christian Heimes · 17 years ago
  3. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
  4. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  5. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 17 years ago
  6. dd47aae Forgot to modify header file in r60707. by Eric Smith · 17 years ago
  7. 5e527eb Added PyNumber_ToBase and supporting routines _PyInt_Format and by Eric Smith · 17 years ago
  8. f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 17 years ago
  9. 422051a Patch #1953 by Christian Heimes · 17 years ago
  10. a26cf9b Make int() and long() fall back to __trunc__(). See issue 2002. by Jeffrey Yasskin · 17 years ago
  11. 58e185a Nasty typo in setobject.h by Amaury Forgeot d'Arc · 17 years ago
  12. cab3d98 Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_SetItem does. by Amaury Forgeot d'Arc · 17 years ago
  13. 951cc0f Fixed bug #1983: Return from fork() is pid_t, not int by Christian Heimes · 17 years ago
  14. 4d4f270 Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detection. The speedup is about 25% for split() (571 / 457 usec) and 35% (175 / 127 usec )for splitlines() by Christian Heimes · 17 years ago
  15. 7759a0c Factor-out common code with a new macro by Raymond Hettinger · 17 years ago
  16. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
  17. cfb41c4 Add stdarg include for va_list to get this to compile on cygwin by Neal Norwitz · 17 years ago
  18. 0cdf9a3 #1473257: add generator.gi_code attribute that refers to by Georg Brandl · 17 years ago
  19. 7f39c9f Backport of several functions from Python 3.0 to 2.6 including PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. by Christian Heimes · 17 years ago
  20. 74b8e76 Don't repeat yourself by Christian Heimes · 17 years ago
  21. 690c912 Fixed a missing (X) in define by Christian Heimes · 17 years ago
  22. 32a3fb5 Patch #1720595: add T_BOOL to the range of structmember types. by Georg Brandl · 17 years ago
  23. 4872351 Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite function is not called isfinite() but finite(). Sorry, my fault. :) by Christian Heimes · 17 years ago
  24. e4c270c Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) by Amaury Forgeot d'Arc · 17 years ago
  25. d1c131a Back out r59931 - test_ctypes fails with it. by Georg Brandl · 17 years ago
  26. 27e26ec Patch #1700288: Method cache optimization, by Armin Rigo, ported to by Georg Brandl · 17 years ago
  27. 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
  28. 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 17 years ago
  29. 0a83d79 Some build bots don't compile mathmodule. There is an issue with the long definition of pi and euler by Christian Heimes · 17 years ago
  30. 02de897 Patch #1583 by Adam Olsen. by Guido van Rossum · 17 years ago
  31. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  32. 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 17 years ago
  33. fd7ed40 Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. by Raymond Hettinger · 17 years ago
  34. effde12 Speed-up dictionary constructor by about 10%. by Raymond Hettinger · 17 years ago
  35. 284d927 Backport of r59456:59458 from py3k to trunk by Christian Heimes · 17 years ago
  36. 4e2f714 Fix Issue 1045. by Raymond Hettinger · 17 years ago
  37. dfdfaab Feature #1534 by Christian Heimes · 17 years ago
  38. e8954f8 Backport of the PCbuild9 directory from the py3k branch. by Christian Heimes · 17 years ago
  39. 5087980 The incremental decoder for utf-7 must preserve its state between calls. by Amaury Forgeot d'Arc · 17 years ago
  40. 327a39b Patch #1739468: Directories and zipfiles containing __main__.py are now executable by Nick Coghlan · 17 years ago
  41. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 17 years ago
  42. 6e39080 Backport r57105 and r57145 from the py3k branch: UTF-32 codecs. by Walter Dörwald · 17 years ago
  43. 766d880 Py_ssize_t is defined regardless of HAVE_LONG_LONG. Will backport by Neal Norwitz · 17 years ago
  44. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  45. c6057c7 Fix #1752132: wrong comment in opcode description. by Georg Brandl · 17 years ago
  46. 84a3efe Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members. by Walter Dörwald · 17 years ago
  47. 2a71a47 Provide PY_LLONG_MAX on all systems having long long. Will backport to 2.5. by Martin v. Löwis · 17 years ago
  48. 9201e7f Provide LLONG_MAX for S390. by Martin v. Löwis · 17 years ago
  49. 6371cd8 Patch #1733960: Allow T_LONGLONG to accept ints. Will backport to 2.5. by Martin v. Löwis · 17 years ago
  50. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 17 years ago
  51. d83eb31 Stop using PyMem_FREE while the GIL is not held. For details see: by Neal Norwitz · 17 years ago
  52. 0a440d4 Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode(). Use this function in posixmodule.c when implementing fdopen(). This fixes test_subprocess.py for a VisualStudio 2005 compile. by Kristján Valur Jónsson · 17 years ago
  53. 0bbbfc4 Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 18 years ago
  54. 276887b Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
  55. 49aafc9 Variant of patch #697613: don't exit the interpreter on a SystemExit by Georg Brandl · 18 years ago
  56. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  57. d6fc72a Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
  58. 0db62aa Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c by Brett Cannon · 18 years ago
  59. 4885e7d Prefix AST symbols with _Py_. Fixes #1637022. Will backport. by Martin v. Löwis · 18 years ago
  60. 98f0d14 Patch #1580872: Remove duplicate declaration of PyCallable_Check. by Martin v. Löwis · 18 years ago
  61. aac1316 Add check for the PyArg_ParseTuple format, and declare it if it is supported. by Martin v. Löwis · 18 years ago
  62. 40e9aed Guard uintptr_t test with HAVE_STDINT_H, test for stdint.h. Will backport. by Martin v. Löwis · 18 years ago
  63. 02743ca Mostly revert this file to the same version as before. Only force setting by Neal Norwitz · 18 years ago
  64. 4a8fbdb Fix %zd string formatting on Mac OS X so it prints negative numbers. by Neal Norwitz · 18 years ago
  65. ca460d9 with and as are now keywords. There are some generated files I can't recreate. by Neal Norwitz · 18 years ago
  66. 271d593 Move peephole optimizer to separate file. (Forgot .h in previous checkin.) by Jeremy Hylton · 18 years ago
  67. 8a26706 SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macro by Neal Norwitz · 18 years ago
  68. 2d5a4e3 Set version to 2.6a0, seems more consistent. by Neal Norwitz · 18 years ago
  69. b671c93 More post-release wibble by Neal Norwitz · 18 years ago
  70. 798ed8f preparing for 2.5c1 - no, really this time by Anthony Baxter · 18 years ago
  71. b409666 preparing for 2.5c1 by Anthony Baxter · 18 years ago
  72. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
  73. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  74. 5d32a9f pre-release machinations by Anthony Baxter · 18 years ago
  75. c5e060d _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long. by Neal Norwitz · 18 years ago
  76. 07aadb1 Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn(). by Neal Norwitz · 18 years ago
  77. 32a8361 After approval from Anthony, merge the tim-current_frames by Tim Peters · 18 years ago
  78. 70e8e87 preparing for 2.5b2 by Anthony Baxter · 18 years ago
  79. f08d663 Upgrade pyexpat to expat 2.0.0 (http://python.org/sf/1462338). by Trent Mick · 18 years ago
  80. d113680 Preparing for 2.5b1. by Anthony Baxter · 18 years ago
  81. 0f2783c Use Py_ssize_t by Neal Norwitz · 18 years ago
  82. d825143 Patch #1455898: Incremental mode for "mbcs" codec. by Martin v. Löwis · 18 years ago
  83. 9291332 Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 18 years ago
  84. b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed by Neal Norwitz · 18 years ago
  85. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  86. 28eeefe Revert revisions: by Tim Peters · 18 years ago
  87. ddbaa66 Patch #1346214: correctly optimize away "if 0"-style stmts by Georg Brandl · 18 years ago
  88. 3f76779 Patch #1359618: Speed-up charmap encoder. by Martin v. Löwis · 18 years ago
  89. 6539d2d Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 18 years ago
  90. 9b10f7e Convert relevant dict internals to Py_ssize_t. by Tim Peters · 18 years ago
  91. 80f8e80 needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only), by Fredrik Lundh · 18 years ago
  92. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago
  93. 7a83089 needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in- by Fredrik Lundh · 18 years ago
  94. 7df5e7f Patch 1145039. by Tim Peters · 18 years ago
  95. b3167cb needforspeed: added rpartition implementation by Fredrik Lundh · 18 years ago
  96. 57640f5 needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" by Fredrik Lundh · 18 years ago
  97. 95e2a91 use Py_LOCAL also for string and unicode objects by Fredrik Lundh · 18 years ago
  98. b8b3c8e needforspeed: added Py_LOCAL macro, based on the LOCAL macro used by Fredrik Lundh · 18 years ago
  99. 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 18 years ago
  100. da53afa A new table to help string->integer conversion was added yesterday to by Tim Peters · 18 years ago