1. 99120c4 Revert rev. 59925, it breaks comtypes (I need to further examine this). by Thomas Heller · 17 years ago
  2. 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
  3. b3c8243 Update to newer version of ffi. Fixes crashes and test failures of longdouble by Neal Norwitz · 17 years ago
  4. e9057ff Initialize variable to prevent warning on some platform/config. by Neal Norwitz · 17 years ago
  5. e1027f9 Use int for the sign rather than a char. char can be signed or unsigned. by Neal Norwitz · 17 years ago
  6. 448654f Mostly reformat. Also set an error and return NULL if neither MS_WINDOWS by Neal Norwitz · 17 years ago
  7. 739a3c4 Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots, by Neal Norwitz · 17 years ago
  8. 29604a1 #1940: make it possible to use curses.filter() before curses.initscr() by Georg Brandl · 17 years ago
  9. 543cabc setup.py doesn't pick up changes to a header file by Christian Heimes · 17 years ago
  10. 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
  11. 5f95a79 Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64) by Neal Norwitz · 17 years ago
  12. 5ca9240 Invert the checks in get_[u]long and get_[u]longlong. The intent was by Thomas Heller · 17 years ago
  13. 71dba4c Replace Py_BuildValue with PyTuple_Pack because it is faster. by Thomas Heller · 17 years ago
  14. e4c03e4 Use a PyDictObject again for the array type cache; retrieving items by Thomas Heller · 17 years ago
  15. 6f4ee2d Fix misleading comment reported in issue #1917. by Guido van Rossum · 17 years ago
  16. 964ca42 patch 1754489 by vlahan: by Armin Rigo · 17 years ago
  17. 501dbbf Use Py_TYPE() instead of ->ob_type by Christian Heimes · 17 years ago
  18. d02fc48 Fix for #1087741 patch. by Georg Brandl · 17 years ago
  19. c09b94e Reformat some ugly code. by Georg Brandl · 17 years ago
  20. 32a3fb5 Patch #1720595: add T_BOOL to the range of structmember types. by Georg Brandl · 17 years ago
  21. 845c403 #1087741: make mmap.mmap the type of mmap objects, not a by Georg Brandl · 17 years ago
  22. ef92802 Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute access. by Georg Brandl · 17 years ago
  23. f558d2e #1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods. by Georg Brandl · 17 years ago
  24. 060e685 Patch #1019808 from Federico Schwindt: Return correct socket error when by Andrew M. Kuchling · 17 years ago
  25. 309501a #1663329: add os.closerange() to close a range of fds, by Georg Brandl · 17 years ago
  26. 5c60bfc Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). by Andrew M. Kuchling · 17 years ago
  27. 4956d2b Silence Coverity false alerts with CIDs #172, #183, #184 by Christian Heimes · 17 years ago
  28. 5cc3f26 Coverity CID #168 leaked_storage: Returned without freeing storage "fp" by Christian Heimes · 17 years ago
  29. 87dcf3d Coverity issue CID #182 by Christian Heimes · 17 years ago
  30. 62a8e95 Coverity issue CID #197 by Christian Heimes · 17 years ago
  31. 18e08e5 clearcache() needs to remove the dict as well as clear it. by Raymond Hettinger · 17 years ago
  32. a35a8b1 Fix a function pointer declaration to silence the compiler. by Brett Cannon · 17 years ago
  33. 4731709 Make starmap() match its pure python definition and accept any itertable input (not just tuples). by Raymond Hettinger · 17 years ago
  34. 0f75f98 Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, for by Thomas Heller · 17 years ago
  35. 415c1e3 Raise a TypeError instead of a ValueError when too many initializers by Thomas Heller · 17 years ago
  36. 02ec289 Raise a TypeError if conflicting positional and named arguments are by Thomas Heller · 17 years ago
  37. 902d307 Convert the internal ctypes array type cache to a WeakValueDict so by Thomas Heller · 17 years ago
  38. 7a66a1b Issue 1821: configure libffi for amd64 on FreeeBSD. by Thomas Heller · 17 years ago
  39. 7cdf5f5 ?Why did my tests not notice this before? by Amaury Forgeot d'Arc · 17 years ago
  40. 08ccf20 As discussed in issue 1700288: by Amaury Forgeot d'Arc · 17 years ago
  41. 5f0b7ae Make Modules/socketobject.c compile for Windows again. by Thomas Heller · 17 years ago
  42. 43617bc Fix a potential 'SystemError: NULL result without error'. by Thomas Heller · 17 years ago
  43. c682614 Raise an error instead of crashing with a segfault when a NULL by Thomas Heller · 17 years ago
  44. 0f97393 Removed unused variable by Christian Heimes · 17 years ago
  45. ff15c86 Guard definition of TIPC_SUB_CANCEL with an #ifdef. by Georg Brandl · 17 years ago
  46. a7d984e Comment-out missing constant (from rev 59819) by Raymond Hettinger · 17 years ago
  47. 7c22ccc Check for fd of -1 to save fsync() and fstat() call by Andrew M. Kuchling · 17 years ago
  48. 3eb4aa7 Related to patch #1114: fix another place where attr_t is assumed to be a long by Andrew M. Kuchling · 17 years ago
  49. 4473d22 Issue 846388. Adds a call to PyErr_CheckSignals to by Facundo Batista · 17 years ago
  50. 41f278f Use relative instead of absolute filenames in the C-level tracebacks. by Thomas Heller · 17 years ago
  51. 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
  52. e0a49b6 Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects by Andrew M. Kuchling · 17 years ago
  53. aed6c66 patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG. by Georg Brandl · 17 years ago
  54. 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
  55. fb2d25a Issue #1646: Make socket support TIPC. The socket module now has support by Christian Heimes · 17 years ago
  56. f725b95 Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst. by Georg Brandl · 17 years ago
  57. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 17 years ago
  58. 04ae916 Added interface to Windows' WSAIoctl and a simple example for a network sniffer. by Christian Heimes · 17 years ago
  59. 76d19f6 Added _struct._clearcache() for regression tests by Christian Heimes · 17 years ago
  60. 66ecda4 Fixed math.copysign() on Windows by Christian Heimes · 17 years ago
  61. 2f6621c Finish-up the struct module optimizations started at the Iceland NFS sprint. by Raymond Hettinger · 17 years ago
  62. 076d9ee Bug #1301: fixed a bad assert in _tkinter. by Guido van Rossum · 17 years ago
  63. eebb79c Added copysign(x, y) function to the math module by Christian Heimes · 17 years ago
  64. 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
  65. e2ca424 Added math.isinf() and math.isnan() by Christian Heimes · 17 years ago
  66. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 17 years ago
  67. 17cb5cf Return results from Python callbacks to Tcl as Tcl objects. by Martin v. Löwis · 17 years ago
  68. 8d993aa Fix the docstrings of time.localtime() and gmtime() for the tm_mday field. by Brett Cannon · 17 years ago
  69. 02de897 Patch #1583 by Adam Olsen. by Guido van Rossum · 17 years ago
  70. 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
  71. 3c887b2 Issue #1645 by Alberto Bertogli. Fix a comment. by Guido van Rossum · 17 years ago
  72. 153038e Issue #1642: Fix segfault in ctypes when trying to delete attributes. by Thomas Heller · 17 years ago
  73. a63f268 Fixed warning in ssl module by Christian Heimes · 17 years ago
  74. 2518b25 Fixed a warning in _codecs_iso2022.c and some non C89 conform // comments. by Christian Heimes · 17 years ago
  75. adf9ffd Fix bug 1604. deque.__init__() did not clear existing contents like list.__init__. Not a backport candidate. by Raymond Hettinger · 17 years ago
  76. 842c178 Fixed a nasty problem in the xxmodule.c by Christian Heimes · 17 years ago
  77. 99b9df8 Forward-port of commit 59184. by Gerhard Häring · 17 years ago
  78. 137c49c Patch #1643738 by Ulisses Furquim -- make the is_tripped variable by Guido van Rossum · 17 years ago
  79. 7b3cc06 Forward-port r59310: by Martin v. Löwis · 17 years ago
  80. 6b449f4 Issue #1727780: Support loading pickles of random.Random objects created by Martin v. Löwis · 17 years ago
  81. 0f6d4e6 I followed MA Lemberg's suggestion and added comments to the late initialization of the type slots. by Christian Heimes · 17 years ago
  82. 3305c52 Applied my patch #1455 with some extra fixes for VS 2005 by Christian Heimes · 17 years ago
  83. 3628187 Fix for feature request #1528 Add os.fchmod by Christian Heimes · 17 years ago
  84. 8fc2a34 Remove unused global variable, and remove unneeded COMError.__str__ by Thomas Heller · 17 years ago
  85. b67da6e #1735632: add O_NOATIME constant to os module. by Georg Brandl · 17 years ago
  86. e8954f8 Backport of the PCbuild9 directory from the py3k branch. by Christian Heimes · 17 years ago
  87. 901071b Fixed #1372: zlibmodule.c: int overflow in PyZlib_decompress by Christian Heimes · 17 years ago
  88. 5087980 The incremental decoder for utf-7 must preserve its state between calls. by Amaury Forgeot d'Arc · 17 years ago
  89. 8c4592a Backport some main.c cleanup from the py3k branch by Nick Coghlan · 17 years ago
  90. 327a39b Patch #1739468: Directories and zipfiles containing __main__.py are now executable by Nick Coghlan · 17 years ago
  91. 5397fd1 A patch from issue 1378 by roudkerk: by Guido van Rossum · 17 years ago
  92. 1bc4af4 readline module cleanup by Christian Heimes · 17 years ago
  93. f354894 Only set rl_completion_display_matches_hook if there by Martin v. Löwis · 17 years ago
  94. d3ffd34 Use a freelist to speed-up block allocation and deallocation in collections.deque(). by Raymond Hettinger · 17 years ago
  95. fc00669 * db->get_types is only available in BerkeleyDB >= 4.2 by Gregory P. Smith · 17 years ago
  96. ac11e02 Add the bsddb.db.DBEnv.lock_id_free method. by Gregory P. Smith · 17 years ago
  97. ec10a4a Fixes bug 477182 on pybsddb.sf.net. DB objects now load the flags and by Gregory P. Smith · 17 years ago
  98. aae141a Fix bug introduced in revision 58385. Database keys could no longer by Gregory P. Smith · 17 years ago
  99. 9c4382f Fix some compiler warnings for signed comparisons on Unix and Windows. by Neal Norwitz · 17 years ago
  100. 469b2a5 ffi_type_longdouble may be already #defined. See issue 1324. by Thomas Heller · 17 years ago