1. 1d2436a Post-release bump. by Georg Brandl · 11 years ago
  2. 497b394 merge with 3.3.3 release clone by Georg Brandl · 11 years ago
  3. 7a5cf6c Added tag v3.3.3 for changeset c3896275c0f6 by Georg Brandl · 11 years ago
  4. 9e2043a Bump to 3.3.3 final. by Georg Brandl · 11 years ago
  5. c610aba Close #19282: Native context management in dbm by Nick Coghlan · 11 years ago
  6. eb8ea26 #19238: merge with 3.3. by Ezio Melotti · 11 years ago
  7. 2bbdfe7 #19238: fix typo in documentation. by Ezio Melotti · 11 years ago
  8. 4725dc3 Issue #19604: Use specific asserts in array tests. by Serhiy Storchaka · 11 years ago
  9. 91b3e77 Issue #19604: Use specific asserts in array tests. by Serhiy Storchaka · 11 years ago
  10. e3eb3ec Issue #19602: Use specific asserts in tkinter tests. by Serhiy Storchaka · 11 years ago
  11. e3b5a76 Issue #19602: Use specific asserts in tkinter tests. by Serhiy Storchaka · 11 years ago
  12. d4b75bf Issue #19601: Use specific asserts in sqlite3 tests. by Serhiy Storchaka · 11 years ago
  13. 78ee078 Issue #19601: Use specific asserts in sqlite3 tests. by Serhiy Storchaka · 11 years ago
  14. 932c616 Issue #19600: Use specific asserts in distutils tests. by Serhiy Storchaka · 11 years ago
  15. 3998915 Issue #19600: Use specific asserts in distutils tests. by Serhiy Storchaka · 11 years ago
  16. bc39869 Issue #19594: Use specific asserts in unittest tests. by Serhiy Storchaka · 11 years ago
  17. 5665bc5 Issue #19594: Use specific asserts in unittest tests. by Serhiy Storchaka · 11 years ago
  18. 8f203dd Issue #19591: Use specific asserts in ctype tests. by Serhiy Storchaka · 11 years ago
  19. 7c5e24f Issue #19591: Use specific asserts in ctype tests. by Serhiy Storchaka · 11 years ago
  20. 745d54d #17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs(). by Ezio Melotti · 11 years ago
  21. b41c254 Correct long line by Jason R. Coombs · 11 years ago
  22. 9d78e41 Issue #19586: Update remaining deprecated assertions to their preferred usage. by Jason R. Coombs · 11 years ago
  23. 13d4853 Fixed issue number for issue #8311. by Serhiy Storchaka · 11 years ago
  24. 452bab4 Issue #16685: Added support for writing any bytes-like objects in the aifc, by Serhiy Storchaka · 11 years ago
  25. 7714ebb Issue #5202: Added support for unseekable files in the wave module. by Serhiy Storchaka · 11 years ago
  26. a7a34a8 Issue #19590: Use specific asserts in email tests. by Serhiy Storchaka · 11 years ago
  27. 328cf3c Issue #19590: Use specific asserts in email tests. by Serhiy Storchaka · 11 years ago
  28. 2335de7 asyncio: Replace connection_refused() with error_received(). by Guido van Rossum · 11 years ago
  29. 6f87a08 Update more usage of assertEqual by Jason R. Coombs · 11 years ago
  30. e9f0311 Use preferred assertEqual by Jason R. Coombs · 11 years ago
  31. 75c40ae Use preferred assertEqual form. Correct indentation. by Jason R. Coombs · 11 years ago
  32. cb37641 Issue #7408: Forward port limited test from Python 2.7, fixing failing buildbot tests on BSD-based platforms. by Jason R. Coombs · 11 years ago
  33. 72967a4 calculate_path() now fails with a fatal error when it fails to allocate memory by Victor Stinner · 11 years ago
  34. 9c10d6b Issue #19504: Used American spelling for 'customize'. by Vinay Sajip · 11 years ago
  35. a76157d Issue #19523: Closed FileHandler leak which occurred when delay was set. by Vinay Sajip · 11 years ago
  36. b11d6cb fileutils.c: use MAXPATHLEN instead of PATH_MAX by Victor Stinner · 11 years ago
  37. 2384714 sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get the size of by Victor Stinner · 11 years ago
  38. 2f5bbc6 pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get the size of by Victor Stinner · 11 years ago
  39. 8bdc130 Issue #19592: Use specific asserts in lib2to3 tests. by Serhiy Storchaka · 11 years ago
  40. 98a0d06 Closes #12828: add docstring text noting this is an internal-only module by Andrew Kuchling · 11 years ago
  41. 587e970 Update e-mail address by Andrew Kuchling · 11 years ago
  42. 09a5f5e Issue #13674 Updated NEWS by Tim Golden · 11 years ago
  43. 6e51b8f Issue13674 Correct crash with strftime %y format under Windows by Tim Golden · 11 years ago
  44. c12f09e Issue #19440: Clean up test_capi by Zachary Ware · 11 years ago
  45. 0eac43a Correct a merge error in Misc/NEWS by Zachary Ware · 11 years ago
  46. acea823 Remove outdated comment by Tim Golden · 11 years ago
  47. 53171b5 Added tag v3.3.3rc2 for changeset d32442c0e60d by Georg Brandl · 11 years ago
  48. 4cf9b20 Bump to 3.3.3rc2. by Georg Brandl · 11 years ago
  49. a2ebfd0 Issue #19544 and Issue #6286: Restore use of urllib over http allowing use of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2. by Jason R. Coombs · 11 years ago
  50. 3492e39 Issue 19544 and Issue #7457: Restore the read_pkg_file method to distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2. by Jason R. Coombs · 11 years ago
  51. 2a1838b Issue #19544 and Issue #1180: Restore global option to ignore ~/.pydistutils.cfg in Distutils, accidentally removed in backout of distutils2 changes. by Andrew Kuchling · 11 years ago
  52. ce4179d Don't mix wide character strings and byte strings (L"lib/python" VERSION): use by Victor Stinner · 11 years ago
  53. c1a57d3 Fix compiler warnings on Windows 64 bit: add an explicit cast from Py_ssize_t by Victor Stinner · 11 years ago
  54. e990c6e Fix sock_recvfrom_guts(): recvfrom() size is limited to an int on Windows, not by Victor Stinner · 11 years ago
  55. 3b59011 Fix compiler warning on Windows 64 bit: _init_pos_args() result type is by Victor Stinner · 11 years ago
  56. 042cb46 Fix compiler warning on Windows 64-bit: asdl_seq_SET() stores the index parameter by Victor Stinner · 11 years ago
  57. da06255 Fix compiler warning (on Windows 64-bit): explicit cast Py_ssize_t to unsigned by Victor Stinner · 11 years ago
  58. 0c08346 Fix compiler warning in win32_urandom(): explicit cast to DWORD in by Victor Stinner · 11 years ago
  59. f558778 Fix compiler warning (especially on Windows 64-bit): don't truncate Py_ssize_t by Victor Stinner · 11 years ago
  60. 1109b54 Fix compiler warning on Windows 64-bit: explicit cast size_t to unsigned long by Victor Stinner · 11 years ago
  61. aa32779 Issue #19544, #6516: no need to catch AttributeError on import pwd/grp by Victor Stinner · 11 years ago
  62. 06afed0 Issue #19544 and Issue #6516: quick workaround for failing builds by Christian Heimes · 11 years ago
  63. 56b0435 Issue #19504: Used American spelling for 'customize'. by Vinay Sajip · 11 years ago
  64. 5e75829 Closes #19523: Merged fix from 3.3. by Vinay Sajip · 11 years ago
  65. 5e2d456 Issue #19544 and Issue #6516: Restore support for --user and --group parameters to sdist command as found in Python 2.7 and originally slated for Python 3.2 but accidentally rolled back as part of the distutils2 rollback. Closes Issue #6516. by Andrew Kuchling · 11 years ago
  66. c31ebb6 (Merge 3.3) fileutils.c: use MAXPATHLEN instead of PATH_MAX by Victor Stinner · 11 years ago
  67. 50e0157 (Merge 3.3) sysmodule.c: fix sys_update_path(), use Py_ARRAY_LENGTH() to get by Victor Stinner · 11 years ago
  68. b5a7a0a (Merge 3.3) pythonrun.c: fix Py_GetPythonHome(), use Py_ARRAY_LENGTH() to get by Victor Stinner · 11 years ago
  69. 39ecf2e asyncio: Longer timeout in Windows test_popen. Fixes issue 19598. by Guido van Rossum · 11 years ago
  70. 4e553e2 Avoid triggering the refleak detector by Nick Coghlan · 11 years ago
  71. 4b9b936 Don't decref exc too soon by Nick Coghlan · 11 years ago
  72. c4c2580 Close 19609: narrow scope of codec exc chaining by Nick Coghlan · 11 years ago
  73. 91d2c56 asyncio: Refactor waitpid mocks. Patch by Anthony Baire. by Guido van Rossum · 11 years ago
  74. 5eb4f59 Issue #19437: Fix init_builtin(), handle _PyImport_FindExtensionObject() failure by Victor Stinner · 11 years ago
  75. 46ef319 Issue #19429, #19437: fix error handling in the OSError constructor by Victor Stinner · 11 years ago
  76. b031427 Issue #19437: Fix parse_envlist() of the posix/nt module, don't call by Victor Stinner · 11 years ago
  77. b80b378 Issue #19437: Fix parse_save_field() of the csv module, handle PyList_Append() by Victor Stinner · 11 years ago
  78. 1eadd6a Issue #19592: Use specific asserts in lib2to3 tests. by Serhiy Storchaka · 11 years ago
  79. e048add Issue #19589: Use specific asserts in asyncio tests. by Serhiy Storchaka · 11 years ago
  80. f38f7f3 asyncio: Avoid ResourceWarning. Fix issue 19580 by Vajrasky Kok. by Guido van Rossum · 11 years ago
  81. 49d0479 Add unused third arg for the benefit of Valgrind. by Stefan Krah · 11 years ago
  82. e109ee8 fix refleaks by Benjamin Peterson · 11 years ago
  83. 079c998 adjust style by Benjamin Peterson · 11 years ago
  84. 8ff3e8a asyncio: Relax timing requirement. Fixes issue 19579. by Guido van Rossum · 11 years ago
  85. c6ae813 merge by Christian Heimes · 11 years ago
  86. 6a3db25 Issue #17828: _PyObject_GetDictPtr() may return NULL instead of a PyObject** by Christian Heimes · 11 years ago
  87. 507eabd Issue #17828: va_start() must be accompanied by va_end() by Christian Heimes · 11 years ago
  88. 541067a Issue #19437: Fix array.buffer_info(), handle PyLong_FromVoidPtr() and by Victor Stinner · 11 years ago
  89. 804e05e Issue #19437: Use an identifier for "__name__" string in pickle to improve by Victor Stinner · 11 years ago
  90. c82729e Issue #19437: Fix fold_unaryops_on_constants() of the peephole optimizer, clear by Victor Stinner · 11 years ago
  91. 2bcae70 asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix). by Guido van Rossum · 11 years ago
  92. be3c2fe removed Enum.__eq__ as it added nothing by Ethan Furman · 11 years ago
  93. 82e9f32 asyncio: Temporary fix by Victor Stinner for issue 19566. by Guido van Rossum · 11 years ago
  94. d4fdbcc Issue #17839: mention base64 change in What's New by Nick Coghlan · 11 years ago
  95. 8b097b4 Close #17828: better handling of codec errors by Nick Coghlan · 11 years ago
  96. 59799a8 Don't use deprecated function PyUnicode_GET_SIZE() by Victor Stinner · 11 years ago
  97. e223439 Issue #19437: Fix ctypes, handle PyCData_GetContainer() and GetKeepedObjects() by Victor Stinner · 11 years ago
  98. 588544d Issue #19437: Fix GetKeepedObjects() of ctypes, handle PyCData_GetContainer() by Victor Stinner · 11 years ago
  99. 7184366 Issue #19437: Fix PyCData_GetContainer() of ctypes, handle PyDict_New() failure by Victor Stinner · 11 years ago
  100. 22af259 Issue #19437: Fix PyImport_ImportModuleLevelObject(), handle by Victor Stinner · 11 years ago