1. 9ec2c52 Merged revisions 86478 via svnmerge from by Alexander Belopolsky · 14 years ago
  2. 9b0034d Post-release bumps. by Georg Brandl · 14 years ago
  3. 83283c2 Issue #10413: Updated comments to reflect code changes by Alexander Belopolsky · 14 years ago
  4. 650db5b prepare for final by Benjamin Peterson · 14 years ago
  5. 5889129 bump to 3.1.3rc1 by Benjamin Peterson · 14 years ago
  6. 24854ca Bump to 3.2a4. by Georg Brandl · 14 years ago
  7. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  8. 9696088 Issue #10288: The deprecated family of "char"-handling macros by David Malcolm · 14 years ago
  9. aeb6cee Issue #10293: Remove obsolete field in the PyMemoryView structure, by Antoine Pitrou · 14 years ago
  10. 98e2b45 Merged revisions 85896 via svnmerge from by Antoine Pitrou · 14 years ago
  11. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  12. 09f24bb Issue #8761: Mangle PyUnicode_CompareWithASCIIString function name for by Victor Stinner · 14 years ago
  13. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  14. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 14 years ago
  15. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  16. fd6a55e Merged revisions 85675 via svnmerge from by R. David Murray · 14 years ago
  17. 051176f #4499: silence compiler warning on AIX. by R. David Murray · 14 years ago
  18. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  19. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  20. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  21. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  22. 5d1e3438 Mark _Py_char2wchar() input argument as constant by Victor Stinner · 14 years ago
  23. 8349031 Post-release bumps. by Georg Brandl · 14 years ago
  24. 002fa2d Bump to 3.2a3. by Georg Brandl · 14 years ago
  25. 257d38f Issue #9738: Document PyErr_SetString() and PyErr_SetFromErrnoWithFilename() by Victor Stinner · 14 years ago
  26. 015f4d8 _Py_wrealpath() requires the size of the output buffer by Victor Stinner · 14 years ago
  27. a4a7595 _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on Windows by Victor Stinner · 14 years ago
  28. b306d75 Fix fileutils for Windows by Victor Stinner · 14 years ago
  29. 4e31443 Create fileutils.c/.h by Victor Stinner · 14 years ago
  30. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  31. c7b6908 Merged revisions 82262,82269,82434,82480-82481,82484-82485,82487-82488,82594,82599,82615 via svnmerge from by Georg Brandl · 14 years ago
  32. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  33. 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 14 years ago
  34. 3e1fd27 Issue #9090: When a socket with a timeout fails with EWOULDBLOCK or EAGAIN, by Antoine Pitrou · 14 years ago
  35. 3b69db2 issue 9910 by Kristján Valur Jónsson · 14 years ago
  36. d4efd9e add column offset to all syntax errors by Benjamin Peterson · 14 years ago
  37. 2c53971 add PyErr_SyntaxLocationEx, to support adding a column offset by Benjamin Peterson · 14 years ago
  38. bd63a99 Merged revisions 84810 via svnmerge from by Daniel Stutzbach · 14 years ago
  39. 3861599 Remove pointers to a FAQ entry that no longer exists. Incorporate some text from the old FAQ into the docs by Daniel Stutzbach · 14 years ago
  40. 1df1536 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly by Antoine Pitrou · 14 years ago
  41. feb7307 #9210: remove --with-wctype-functions configure option. by Amaury Forgeot d'Arc · 14 years ago
  42. f13c6d8 Issue #9318: Use Py_LL for old compiler. by Hirokazu Yamamoto · 14 years ago
  43. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  44. 5b519e0 Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING by Victor Stinner · 14 years ago
  45. ba117ef #4617: Previously it was illegal to delete a name from the local by Amaury Forgeot d'Arc · 14 years ago
  46. bad0925 Post-release update. by Georg Brandl · 14 years ago
  47. 58a7b46 Bump to 3.2a2. by Georg Brandl · 14 years ago
  48. 74a69fa Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced by Antoine Pitrou · 14 years ago
  49. 4640860 Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy() by Victor Stinner · 14 years ago
  50. 71133ff Create PyUnicode_strdup() function by Victor Stinner · 14 years ago
  51. c4eb765 Create Py_UNICODE_strcat() function by Victor Stinner · 14 years ago
  52. fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() by Antoine Pitrou · 14 years ago
  53. b83df8f Merged revisions 84391 via svnmerge from by Antoine Pitrou · 14 years ago
  54. f68c2a7 Issue #3101: Helper functions _add_one_to_C() and _add_one_to_F() become by Antoine Pitrou · 14 years ago
  55. a606faa Issue 5553: Improved Py_LOCAL_INLINE to actually inline under compilers other than MSC by Daniel Stutzbach · 14 years ago
  56. b440aec Merged revisions 84347 via svnmerge from by Antoine Pitrou · 14 years ago
  57. 67c7ce4 Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private by Antoine Pitrou · 14 years ago
  58. fcd2a79 Merged revisions 84344 via svnmerge from by Antoine Pitrou · 14 years ago
  59. 1a9a9d5 Issue #1868: Eliminate subtle timing issues in thread-local objects by by Antoine Pitrou · 14 years ago
  60. 324ac65 #5127: Even on narrow unicode builds, the C functions that access the Unicode by Amaury Forgeot d'Arc · 14 years ago
  61. 6c00c14 Issue #9425: Create PyModule_GetFilenameObject() function by Victor Stinner · 14 years ago
  62. 6b06da5 Remove unused functions _PyImport_FindModule and _PyImport_IsScript by Victor Stinner · 14 years ago
  63. f72006f Merged revisions 84146-84147,84150 via svnmerge from by Antoine Pitrou · 14 years ago
  64. 671b4d9 Issue #9612: The set object is now 64-bit clean under Windows. by Antoine Pitrou · 14 years ago
  65. ef8d95c Issue #9425: Create Py_UNICODE_strncmp() function by Victor Stinner · 14 years ago
  66. 7976663 Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr() by Victor Stinner · 14 years ago
  67. f52b705 Create _Py_fopen() for PyUnicodeObject path by Victor Stinner · 14 years ago
  68. 4f4402c Issue #9425: Create private _Py_stat() function by Victor Stinner · 14 years ago
  69. 47fcb5b Issue #9542: Create PyUnicode_FSDecoder() function by Victor Stinner · 14 years ago
  70. f2e08b3 Create _Py_wchar2char() function, reverse of _Py_char2wchar() by Victor Stinner · 14 years ago
  71. e9b428f Reimplement addbuilddir() in C inside getpath.c, so as to execute it by Antoine Pitrou · 14 years ago
  72. e81c806 De-duplicate contents of pytime.h by Antoine Pitrou · 14 years ago
  73. 4a2b7a1 Issue #9425: Create PyErr_WarnFormat() function by Victor Stinner · 14 years ago
  74. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  75. 331ea92 Issue #9425: create Py_UNICODE_strrchr() function by Victor Stinner · 14 years ago
  76. da3b5bf correct comment by Benjamin Peterson · 14 years ago
  77. 696e035 Issue #477863: Print a warning at shutdown if gc.garbage is not empty. by Antoine Pitrou · 14 years ago
  78. 6fc4ade Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API by Alexander Belopolsky · 14 years ago
  79. 388122d Issue #9337: Make float.__str__ identical to float.__repr__. by Mark Dickinson · 14 years ago
  80. ee449c4 Post-release updates. by Georg Brandl · 14 years ago
  81. 62069d3 Bump versions and review NEWS file. by Georg Brandl · 14 years ago
  82. 20f9c3c revert unintended changes by Benjamin Peterson · 14 years ago
  83. 013783c move test_trace.py so as not to conflict with future tests for the trace module by Benjamin Peterson · 14 years ago
  84. 5bf0664 Merged revisions 82966 via svnmerge from by Stefan Krah · 14 years ago
  85. 36d2e67 Issue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wide by Stefan Krah · 14 years ago
  86. ccabcd4 make struct sequences subclass tuple; kill lots of code by Benjamin Peterson · 14 years ago
  87. d19052c Issue #9089: Remove references to intobject.c and intobject.h from comments. by Mark Dickinson · 14 years ago
  88. 952867a #9078: fix some Unicode C API descriptions, in comments and docs. by Georg Brandl · 14 years ago
  89. 521ee56 Merged revisions 82194 via svnmerge from by Stefan Krah · 14 years ago
  90. 2f7105d Add specification for the Py_IS* macros in pyctype.h. by Stefan Krah · 14 years ago
  91. 25bb0fd Merged revisions 82059,82061 via svnmerge from by Victor Stinner · 14 years ago
  92. 0fe25a4 Issue #6543: Write the traceback in the terminal encoding instead of utf-8. by Victor Stinner · 14 years ago
  93. fa68a61 Fix naming inconsistency. by Mark Dickinson · 14 years ago
  94. 7f1bf80 Issue #8817: Expose round-to-nearest variant of divmod in _PyLong_Divmod_Near by Mark Dickinson · 14 years ago
  95. dc787d2 Issue #8188: Introduce a new scheme for computing hashes of numbers by Mark Dickinson · 14 years ago
  96. 71d305c Merged revisions 81400 via svnmerge from by Antoine Pitrou · 14 years ago
  97. f978fac Merged revisions 81398 via svnmerge from by Antoine Pitrou · 14 years ago
  98. 9ca9c25 Issue #8589: Decode PYTHONWARNINGS environment variable with the file system by Victor Stinner · 14 years ago
  99. ccbd694 rephrase by Benjamin Peterson · 14 years ago
  100. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago