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