1. 1cc60ed Updated to pysqlite 2.4.1. Documentation additions will come later. by Gerhard Häring · 17 years ago
  2. 08ff682 Handle the repeat keyword argument for itertools.product(). by Raymond Hettinger · 17 years ago
  3. b4cbc98 Add alternate constructor for itertools.chain(). by Raymond Hettinger · 17 years ago
  4. 05bf633 Have itertools.chain() consume its inputs lazily instead of building a tuple of iterators at the outset. by Raymond Hettinger · 17 years ago
  5. cdddf18 The empty tuple is usually a singleton with a much higher refcnt than 1 by Christian Heimes · 17 years ago
  6. 3bd7712 One too many decrefs. by Raymond Hettinger · 17 years ago
  7. 93e804d Add itertools.combinations(). by Raymond Hettinger · 17 years ago
  8. ea83793 Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and improve error msg by Christian Heimes · 17 years ago
  9. aa0ef52 The contains function raised a gcc warning. The new code is copied straight from py3k. by Christian Heimes · 17 years ago
  10. b628913 Whitespace normalization by Neal Norwitz · 17 years ago
  11. b1d70e2 Coerced PyBool_Type to be able to compare it. by Facundo Batista · 17 years ago
  12. 9d63837 Make sure the itertools filter functions give the same performance for func=bool as func=None. by Raymond Hettinger · 17 years ago
  13. df41989 Issue 2168. gdbm and dbm needs to be iterable; this fixes a by Facundo Batista · 17 years ago
  14. 114dd94 Fix typo of hexidecimal by Neal Norwitz · 17 years ago
  15. ed0a593 Get ctypes working on the Alpha (Tru64). The problem was that there by Neal Norwitz · 17 years ago
  16. ebcfd11 #1506171: added operator.methodcaller(). by Georg Brandl · 17 years ago
  17. e2065c6 #1826: allow dotted attribute paths in operator.attrgetter. by Georg Brandl · 17 years ago
  18. f0476e8 Patch #1957: syslogmodule: Release GIL when calling syslog(3) by Christian Heimes · 17 years ago
  19. 7e251e8 Issue 1089358. Adds the siginterrupt() function, that is just a by Facundo Batista · 17 years ago
  20. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
  21. 532316d Add more comments by Raymond Hettinger · 17 years ago
  22. a73fbe7 Added future_builtins, which contains PEP 3127 compatible versions of hex() and oct(). by Eric Smith · 17 years ago
  23. 73d7963 Improve the implementation of itertools.product() by Raymond Hettinger · 17 years ago
  24. 50986cc First draft for itertools.product(). Docs and other updates forthcoming. by Raymond Hettinger · 17 years ago
  25. 981f318 configure.ac: Remove the configure check for _Bool, it is already done in the by Thomas Heller · 17 years ago
  26. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 18 years ago
  27. e139688 Issue 2112. mmap does not raises EnvironmentError no more, but by Facundo Batista · 18 years ago
  28. 588ff93 Crashers of the day: Py_CLEAR must be used when there is a chance that the by Amaury Forgeot d'Arc · 18 years ago
  29. 7adfad8 Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ by Christian Heimes · 18 years ago
  30. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 18 years ago
  31. a06a1a8 Add pickle support to ctypes types. by Thomas Heller · 18 years ago
  32. 0a40ffb #2063: correct order of utime and stime in os.times() result on Windows. by Georg Brandl · 18 years ago
  33. a37430a dict.copy() rises from the ashes. Revert r60687. by Raymond Hettinger · 18 years ago
  34. 17a74c3 Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go away in Py3.x by Raymond Hettinger · 18 years ago
  35. 01612e7 Update big5hkscs codec to conform to the HKSCS:2004 revision. by Hye-Shik Chang · 18 years ago
  36. b01aa43 issue 2045: Infinite recursion when printing a subclass of defaultdict, by Amaury Forgeot d'Arc · 18 years ago
  37. 8352585 Make sure a switch statement does not have repetitive case statements. by Brett Cannon · 18 years ago
  38. 55b8c3e Fixed refcounts and error handling. by Thomas Heller · 18 years ago
  39. e6a8074 Another int -> pid_t case by Christian Heimes · 18 years ago
  40. eeed5b7 Merge this fix from the pybsddb tree: by Gregory P. Smith · 18 years ago
  41. 94dcf0d The wrapper function is supposed to be for spawnvpe() so that's by Andrew MacIntyre · 18 years ago
  42. fe424f7 Neaten-up a bit. by Raymond Hettinger · 18 years ago
  43. d491d71 More int -> pid_t. by Christian Heimes · 18 years ago
  44. ca2b69f Move __builtins__.trunc() to math.trunc() per by Jeffrey Yasskin · 18 years ago
  45. 951cc0f Fixed bug #1983: Return from fork() is pid_t, not int by Christian Heimes · 18 years ago
  46. 99120c4 Revert rev. 59925, it breaks comtypes (I need to further examine this). by Thomas Heller · 18 years ago
  47. d7e1b2b static PyObject* variables should use PyString_InternFromString() instead of PyObject_FromString() to store a python string in a function level static var. by Christian Heimes · 18 years ago
  48. b3c8243 Update to newer version of ffi. Fixes crashes and test failures of longdouble by Neal Norwitz · 18 years ago
  49. e9057ff Initialize variable to prevent warning on some platform/config. by Neal Norwitz · 18 years ago
  50. e1027f9 Use int for the sign rather than a char. char can be signed or unsigned. by Neal Norwitz · 18 years ago
  51. 448654f Mostly reformat. Also set an error and return NULL if neither MS_WINDOWS by Neal Norwitz · 18 years ago
  52. 739a3c4 Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots, by Neal Norwitz · 18 years ago
  53. 29604a1 #1940: make it possible to use curses.filter() before curses.initscr() by Georg Brandl · 18 years ago
  54. 543cabc setup.py doesn't pick up changes to a header file by Christian Heimes · 18 years ago
  55. 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 · 18 years ago
  56. 5f95a79 Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64) by Neal Norwitz · 18 years ago
  57. 5ca9240 Invert the checks in get_[u]long and get_[u]longlong. The intent was by Thomas Heller · 18 years ago
  58. 71dba4c Replace Py_BuildValue with PyTuple_Pack because it is faster. by Thomas Heller · 18 years ago
  59. e4c03e4 Use a PyDictObject again for the array type cache; retrieving items by Thomas Heller · 18 years ago
  60. 6f4ee2d Fix misleading comment reported in issue #1917. by Guido van Rossum · 18 years ago
  61. 964ca42 patch 1754489 by vlahan: by Armin Rigo · 18 years ago
  62. 501dbbf Use Py_TYPE() instead of ->ob_type by Christian Heimes · 18 years ago
  63. d02fc48 Fix for #1087741 patch. by Georg Brandl · 18 years ago
  64. c09b94e Reformat some ugly code. by Georg Brandl · 18 years ago
  65. 32a3fb5 Patch #1720595: add T_BOOL to the range of structmember types. by Georg Brandl · 18 years ago
  66. 845c403 #1087741: make mmap.mmap the type of mmap objects, not a by Georg Brandl · 18 years ago
  67. ef92802 Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute access. by Georg Brandl · 18 years ago
  68. f558d2e #1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods. by Georg Brandl · 18 years ago
  69. 060e685 Patch #1019808 from Federico Schwindt: Return correct socket error when by Andrew M. Kuchling · 18 years ago
  70. 309501a #1663329: add os.closerange() to close a range of fds, by Georg Brandl · 18 years ago
  71. 5c60bfc Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). by Andrew M. Kuchling · 18 years ago
  72. 4956d2b Silence Coverity false alerts with CIDs #172, #183, #184 by Christian Heimes · 18 years ago
  73. 5cc3f26 Coverity CID #168 leaked_storage: Returned without freeing storage "fp" by Christian Heimes · 18 years ago
  74. 87dcf3d Coverity issue CID #182 by Christian Heimes · 18 years ago
  75. 62a8e95 Coverity issue CID #197 by Christian Heimes · 18 years ago
  76. 18e08e5 clearcache() needs to remove the dict as well as clear it. by Raymond Hettinger · 18 years ago
  77. a35a8b1 Fix a function pointer declaration to silence the compiler. by Brett Cannon · 18 years ago
  78. 4731709 Make starmap() match its pure python definition and accept any itertable input (not just tuples). by Raymond Hettinger · 18 years ago
  79. 0f75f98 Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, for by Thomas Heller · 18 years ago
  80. 415c1e3 Raise a TypeError instead of a ValueError when too many initializers by Thomas Heller · 18 years ago
  81. 02ec289 Raise a TypeError if conflicting positional and named arguments are by Thomas Heller · 18 years ago
  82. 902d307 Convert the internal ctypes array type cache to a WeakValueDict so by Thomas Heller · 18 years ago
  83. 7a66a1b Issue 1821: configure libffi for amd64 on FreeeBSD. by Thomas Heller · 18 years ago
  84. 7cdf5f5 ?Why did my tests not notice this before? by Amaury Forgeot d'Arc · 18 years ago
  85. 08ccf20 As discussed in issue 1700288: by Amaury Forgeot d'Arc · 18 years ago
  86. 5f0b7ae Make Modules/socketobject.c compile for Windows again. by Thomas Heller · 18 years ago
  87. 43617bc Fix a potential 'SystemError: NULL result without error'. by Thomas Heller · 18 years ago
  88. c682614 Raise an error instead of crashing with a segfault when a NULL by Thomas Heller · 18 years ago
  89. 0f97393 Removed unused variable by Christian Heimes · 18 years ago
  90. ff15c86 Guard definition of TIPC_SUB_CANCEL with an #ifdef. by Georg Brandl · 18 years ago
  91. a7d984e Comment-out missing constant (from rev 59819) by Raymond Hettinger · 18 years ago
  92. 7c22ccc Check for fd of -1 to save fsync() and fstat() call by Andrew M. Kuchling · 18 years ago
  93. 3eb4aa7 Related to patch #1114: fix another place where attr_t is assumed to be a long by Andrew M. Kuchling · 18 years ago
  94. 4473d22 Issue 846388. Adds a call to PyErr_CheckSignals to by Facundo Batista · 18 years ago
  95. 41f278f Use relative instead of absolute filenames in the C-level tracebacks. by Thomas Heller · 18 years ago
  96. 62182c8 Patch 1114: fix compilation of curses module on 64-bit AIX, and any other LP64 platforms where attr_t isn't a C long by Andrew M. Kuchling · 18 years ago
  97. e0a49b6 Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects by Andrew M. Kuchling · 18 years ago
  98. aed6c66 patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG. by Georg Brandl · 18 years ago
  99. 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 18 years ago
  100. fb2d25a Issue #1646: Make socket support TIPC. The socket module now has support by Christian Heimes · 18 years ago