1. 13870b1 Also make _heapq.nlargest() use Py_ssize_t instead of ints, to iter over by Thomas Wouters · 19 years ago
  2. ed6254a Use 'n' format for Py_ssize_t variables to PyArg_ParseTuple(). Py_ssize_t by Thomas Wouters · 19 years ago
  3. 7a2f83b Use correct format specifier for Py_ssize_t variable to PyArg_ParseTuple(). by Thomas Wouters · 19 years ago
  4. 4129068 Change _PyObject_GC_Resize to expect Py_ssize_t. by Martin v. Löwis · 19 years ago
  5. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
  6. 3eaf2b5 Update comment and make accurate. by Neal Norwitz · 19 years ago
  7. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  8. 219c164 randombits(): Stop compiler warning about mixing by Tim Peters · 19 years ago
  9. 389cea8 Try to improve name based on discussion on python-checkins with Jim Jewett by Neal Norwitz · 19 years ago
  10. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  11. f84d1b9 Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE. Proposed by Tim Peters. by Martin v. Löwis · 19 years ago
  12. 2bc23f5 The default timer unit was incorrectly measured in milliseconds instead by Armin Rigo · 19 years ago
  13. a871ef2 Added the cProfile module. by Armin Rigo · 19 years ago
  14. 082b2df Bug #876637, prevent stack corruption when socket descriptor by Neal Norwitz · 19 years ago
  15. 19cbcad Fix indentation (whitespace only). by Neal Norwitz · 19 years ago
  16. 02876df Check return results for errors by Neal Norwitz · 19 years ago
  17. 0e6bc8c Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same by Neal Norwitz · 19 years ago
  18. d1cfc8a Whitespace normalization by Neal Norwitz · 19 years ago
  19. 57a34e8 Patch #1422385: Changes to nis module to support multiple NIS domains by Martin v. Löwis · 19 years ago
  20. 1469466 Drop C library for stat/fstat on Windows. by Martin v. Löwis · 19 years ago
  21. fd049a6 maintain support for older python versions in this module so that it by Gregory P. Smith · 19 years ago
  22. 8a47404 Add wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVER by Gregory P. Smith · 19 years ago
  23. 62a2112 Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env. by Neal Norwitz · 19 years ago
  24. 4e414d8 commits sourceforge patch #1407992 by neil.norwitz. by Gregory P. Smith · 19 years ago
  25. 29602d2 Support for BerkeleyDB 4.4 (tested against 4.4.20 as well as all the by Gregory P. Smith · 19 years ago
  26. 3d56350 _compile(): raise an exception if downcasting to SRE_CODE loses information: by Tim Peters · 19 years ago
  27. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  28. d078e40 Generate getbuildinfo.o each time the linker is invoked; by Martin v. Löwis · 19 years ago
  29. 20bad74 SF Bug #1407069, Remove extra semi-colon if there is no long long by Neal Norwitz · 19 years ago
  30. 6585166 Get socketmodule to build after adding netlink support. by Neal Norwitz · 19 years ago
  31. b84b35f the implementation uses ZipImportError, not ZipImporterError... by Fredrik Lundh · 19 years ago
  32. d056005 Change build format of netlink addresses. by Martin v. Löwis · 19 years ago
  33. 11017b1 Patch #1103116: AF_NETLINK sockets basic support. by Martin v. Löwis · 19 years ago
  34. 3b4fff8 Fix SF bug #1402308, segfault when using mmap(-1, ...) by Neal Norwitz · 19 years ago
  35. 88bbd73 SF bug #1400822, Extended version of _curses over{lay,write} does not work by Neal Norwitz · 19 years ago
  36. 5e3d862 Bug #1400115, Fix segfault when calling curses.panel.userptr() by Neal Norwitz · 19 years ago
  37. d948a43 Fix icc warnings: try to set TCL_UNIX_FD for #if TCL_WIN_SOCKET == TCL_UNIX_FD. res is not used, add a XXX comment by Neal Norwitz · 19 years ago
  38. e4ab5f5 Fix icc warnings: HASH_OBJ_CONSTRUCTOR was not defined and using #if HASH_OBJ_CONSTRUCTOR by Neal Norwitz · 19 years ago
  39. d39d861 Fix icc warnings: strlen() returns size_t by Neal Norwitz · 19 years ago
  40. 52ca0dd Fix icc warnings: using wrong enum type by Neal Norwitz · 19 years ago
  41. f045914 Fix icc warnings: extra semi-colon and signed vs unsigned by Neal Norwitz · 19 years ago
  42. 3f04648 Fix icc warnings: extra semi-colon by Neal Norwitz · 19 years ago
  43. a9652f1 Py_GetBuildInfo(): Squash compiler warnings. by Tim Peters · 19 years ago
  44. 456af5f Deal with empty svn_revisions. by Martin v. Löwis · 19 years ago
  45. 43b5780 Drop sys.build_number. Add sys.subversion. by Martin v. Löwis · 19 years ago
  46. 2b47445 squash compiler warning on Mac OSX 10.3 by Skip Montanaro · 19 years ago
  47. c5bf5a0 Always set SVNVERSION to "exported" if it otherwise fails. by Martin v. Löwis · 19 years ago
  48. dea59e5 Stop maintaining the buildno file. by Martin v. Löwis · 19 years ago
  49. 40c6b47 Fix errors on 64-bit platforms. Will backport by Neal Norwitz · 19 years ago
  50. 70cef44 Remove unneeded directories. by Martin v. Löwis · 19 years ago
  51. d372aa8 Import zlib into Python tree. by Martin v. Löwis · 19 years ago
  52. f5bd3b4 adding in-place operators to the operator module. by Armin Rigo · 19 years ago
  53. c4308d5 two missing PyDoc_STR(). by Armin Rigo · 19 years ago
  54. cd4d1e8 [ 959576 ] Can't build Python on POSIX w/o $HOME by Georg Brandl · 19 years ago
  55. c338999 SF#1389809 by Fredrik Lundh · 19 years ago
  56. ce3a913 Revert most of r41765. Don't use $Revision$ in Py_GetBuildNumber(). Keep the by Barry Warsaw · 19 years ago
  57. 9dbc7dd Remove extra parens by Neal Norwitz · 19 years ago
  58. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  59. a3bdc2c Handle a couple of use cases discussed in python-dev w.r.t. calculating the by Barry Warsaw · 19 years ago
  60. 0149e3a Fixed None reference leaks in TreeBuilder class (reported by Neal Norwitz) by Fredrik Lundh · 19 years ago
  61. 8856fb7 SF Patch #1365916, mmap fails on AMD64 by Neal Norwitz · 19 years ago
  62. 2a38a86 Expose Subversion revision number (calculated via "svnversion .") to Python. by Barry Warsaw · 19 years ago
  63. b80775e Fixed reference counting error when using the entity dictionary by Fredrik Lundh · 19 years ago
  64. 6d52b55 updating to cElementTree 1.0.5 (step 3 of 3) by Fredrik Lundh · 19 years ago
  65. 8c8836b updating to cElementTree 1.0.5 (step 2 of 3) by Fredrik Lundh · 19 years ago
  66. 7cfe6ee updating to cElementTree 1.0.5 by Fredrik Lundh · 19 years ago
  67. c97ba70 added PSG licensing blurb by Fredrik Lundh · 19 years ago
  68. 14b4fea renamed to _elementtree (for Python 2.5) by Fredrik Lundh · 19 years ago
  69. 0c53bfd copied cElementTree 1.0.4 to Modules by Fredrik Lundh · 19 years ago
  70. 5c8cc25 Added the 'ULL' prefix to the unsigned long long literal constants. by Armin Rigo · 19 years ago
  71. cc117db moved magic into structure (mainly to simplify the client code) by Fredrik Lundh · 19 years ago
  72. d7a4288 renamed dispatch -> capi to match other CAPI implementations by Fredrik Lundh · 19 years ago
  73. c334504 added cobject-based expat dispatch mechanism to pyexpat by Fredrik Lundh · 19 years ago
  74. c5c57e6 Bug #1290333: Added a workaround for cjkcodecs' _codecs_cn module by Hye-Shik Chang · 19 years ago
  75. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  76. de5f05f Nobody on python-dev seemed particularly bothered that Hotshot generates half- by Armin Rigo · 19 years ago
  77. a13c244 Bug #869197: setgroups rejects long integer argument by Georg Brandl · 19 years ago
  78. bb7e800 [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and bugfix. Bug reported by John Schmidt; bugfix by Danny Yoo. by Andrew M. Kuchling · 19 years ago
  79. f5b7fd2 update busted comment by Fred Drake · 19 years ago
  80. f4afb21 similar to SF bug 847019: a quick check in the time() constructor, which by Armin Rigo · 19 years ago
  81. 0f46bbf Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxint by Neal Norwitz · 19 years ago
  82. 9fd115c Whitespace cleanup. by Walter Dörwald · 19 years ago
  83. 6eac200 Cleanup the previous checkin. by Neal Norwitz · 19 years ago
  84. 7b63179 Bug #1344508, Fix UNIX mmap leaking file descriptors. Will backport. by Neal Norwitz · 19 years ago
  85. ab0f947 Remove .cvsignore files, as they live in svn:ignore properties now. by Martin v. Löwis · 19 years ago
  86. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  87. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  88. 8456235 Get bsddb module to compile with version 3.2 of BSD DB. by Neal Norwitz · 19 years ago
  89. 331649a Change the internal "undefined codepoint" mark for CJKCodecs decoders by Hye-Shik Chang · 19 years ago
  90. cc9a951 SF #1313496: bisect C replacement doesn't accept named args by Raymond Hettinger · 19 years ago
  91. a45770d SF Bug # 941346, AIX shared library fix by Neal Norwitz · 19 years ago
  92. 11bd119 SF bug #887946, segfault if redirecting directory by Neal Norwitz · 19 years ago
  93. 484d9a4 Patch #1309009, Fix segfault in pyexpat when the XML document is by Neal Norwitz · 19 years ago
  94. e677adc Fix parse errors in readline module when compiling without threads. by Georg Brandl · 19 years ago
  95. e9f8ec9 Commit memory leaking fix. by Georg Brandl · 19 years ago
  96. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  97. 9ceebd5 Patch #1288833: Removed thread lock from socket.getaddrinfo on by Hye-Shik Chang · 19 years ago
  98. 10402a3 Patches #1298449 and #1298499: Add some missing checks for error by Michael W. Hudson · 19 years ago
  99. 058bde1 SF Patch #1297028, cjkcodecs does not initialize type pointer by Neal Norwitz · 19 years ago
  100. 335ffe8 C89 compliance. by Armin Rigo · 19 years ago