1. d7c3ed5 Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,80852,80854,80870,80872-80873,80907,80915-80916,80951-80952,80976-80977,80985,81038-81040,81042,81053,81070,81104-81105,81114,81125,81245,81285,81402,81463,81516,81562-81563,81567,81593,81635,81680-81681,81684,81801,81888,81931-81933,81939-81942,81963,81984,81991,82120,82188,82264-82267 via svnmerge from by Benjamin Peterson · 14 years ago
  2. 30b7a90 Add a link to PEP 3147 from the importlib docs. by Brett Cannon · 14 years ago
  3. 2ebf8ce Merged revisions 81881-81882 via svnmerge from by Benjamin Peterson · 14 years ago
  4. 3e5cd1d Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from by Benjamin Peterson · 14 years ago
  5. 63eebe5 Blocked revisions 80787,80793 via svnmerge by Benjamin Peterson · 14 years ago
  6. bef0100 Blocked revisions 80649,80710 via svnmerge by Benjamin Peterson · 14 years ago
  7. 324222d Blocked revisions 79925-79926,80397 via svnmerge by Benjamin Peterson · 14 years ago
  8. c543f75 Blocked revisions 80731-80736,80739,80741-80744,80746-80747,80807-80812,80815-80822,80843,80874 via svnmerge by Benjamin Peterson · 14 years ago
  9. a82addb Merged revisions 80712,81651 via svnmerge from by Benjamin Peterson · 14 years ago
  10. 28df4df Blocked revisions 79620,79624-79625,79633-79637,79639-79640,79650-79651,79654,79673,79693,79695,79697-79698,79704,79706-79707,79710,79712-79714,79718-79719,79722,79730,79744,79750,79755,79760,79769,79808,79811,79890,80062,80065,80082,80086,80171,80189,80242-80243,80374,80411-80412,80445,80579-80581,80700,80737,80745,80752,80794,80813-80814,80823,80963,80982,81012-81013,81030,81035,81088,81140-81141,81149-81151,81275,81484,81502,81517,81561,81705,81847,81919,81964,82056,82136-82137,82142,82149 via svnmerge by Benjamin Peterson · 14 years ago
  11. c1c7cf6 Revert r82259; still no good way to override instead of replace OPT, but changing order alters pydebug optimization flags. by Brett Cannon · 14 years ago
  12. d19052c Issue #9089: Remove references to intobject.c and intobject.h from comments. by Mark Dickinson · 14 years ago
  13. 7ab54e4 Issue #9089: Remove intobject.h from MSVC project files. by Mark Dickinson · 14 years ago
  14. 3a23c9e Issue #9089: PyNumber_Int is no more. Remove it from the docs. by Mark Dickinson · 14 years ago
  15. ab90f8e Merged revisions 82284 via svnmerge from by Ronald Oussoren · 14 years ago
  16. c943de2 Blocked revisions 82271 via svnmerge by Georg Brandl · 14 years ago
  17. 7adeed3 Merged revisions 82150 via svnmerge from by Ronald Oussoren · 14 years ago
  18. 0f377a5 Merged revisions 82276 via svnmerge from by Ronald Oussoren · 14 years ago
  19. dc969e5 Merged revisions 82272 via svnmerge from by Ronald Oussoren · 14 years ago
  20. 8459447 Untabify. by Georg Brandl · 14 years ago
  21. 7d82106 Wording fix. by Georg Brandl · 14 years ago
  22. eb1f4aa #9064: accept number of frames for "up" and "down" commands in pdb. by Georg Brandl · 14 years ago
  23. 952867a #9078: fix some Unicode C API descriptions, in comments and docs. by Georg Brandl · 14 years ago
  24. 620c6c7 Having CFLAGS come before OPT prevents silencing certain classes of warnings by Brett Cannon · 14 years ago
  25. 1341f57 Merged revisions 82251 via svnmerge from by Alexander Belopolsky · 14 years ago
  26. c1897e7 Merged revisions 82248 via svnmerge from by Ezio Melotti · 14 years ago
  27. 8a51c11 Blocked revisions 82246 via svnmerge by R. David Murray · 14 years ago
  28. 76af402 Merged revisions 82242 via svnmerge from by R. David Murray · 14 years ago
  29. 56303e0 Merged revisions 82236 via svnmerge from by Alexander Belopolsky · 14 years ago
  30. 8097269 Merged revisions 82233 via svnmerge from by R. David Murray · 14 years ago
  31. 0a28bc5 remove old, outdated tool by Benjamin Peterson · 14 years ago
  32. 4fd283a fix typos by Benjamin Peterson · 14 years ago
  33. c7a7d40 Merged revisions 82229 via svnmerge from by Benjamin Peterson · 14 years ago
  34. f16eec2 Blocked revisions 82227 via svnmerge by Benjamin Peterson · 14 years ago
  35. 6e4c68e Merged revisions 82225 via svnmerge from by Benjamin Peterson · 14 years ago
  36. fdb0acc Merged revisions 82221 via svnmerge from by Mark Dickinson · 14 years ago
  37. 88968ad only take into account positional arguments count in related error messages by Benjamin Peterson · 14 years ago
  38. 5a3ef5b #9018: os.path.normcase() now raises a TypeError if the argument is not str or bytes. by Ezio Melotti · 14 years ago
  39. 6186bfb Merged revisions 82210 via svnmerge from by Antoine Pitrou · 14 years ago
  40. 25e8ec4 Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use by Victor Stinner · 14 years ago
  41. 21e0948 getbuffer(): release the buffer on error (if the buffer is not contiguous) by Victor Stinner · 14 years ago
  42. 8bae4ec Issue #8682: The ssl module now temporary increments the reference count of by Antoine Pitrou · 14 years ago
  43. 3c9e6e9 PyArg_Parse*() functions: factorize code for s/z and u/Z formats by Victor Stinner · 14 years ago
  44. 4aae1eb Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytes by Victor Stinner · 14 years ago
  45. 2f7105d Add specification for the Py_IS* macros in pyctype.h. by Stefan Krah · 14 years ago
  46. ce8b3f7 Blocked revisions 82191 via svnmerge by Stefan Krah · 14 years ago
  47. 1b1a1a4 Merged revisions 82189 via svnmerge from by Benjamin Peterson · 14 years ago
  48. 5e307de Added more test cases by Alexander Belopolsky · 14 years ago
  49. 33b94c9 Test future pickle protocols. Thanks Antoine Pitrou for suggestion. by Alexander Belopolsky · 14 years ago
  50. 1b7046b Issue #9051: Instances of timezone class can now be pickled. by Alexander Belopolsky · 14 years ago
  51. b7e1010 Issue #8930: Remaining indentation fixes after the Grand Unified Indenting. by Stefan Krah · 14 years ago
  52. 131dac3 Blocked revisions 82177 via svnmerge by Stefan Krah · 14 years ago
  53. 9aee2c8 Merged revisions 82169 via svnmerge from by Antoine Pitrou · 14 years ago
  54. 945c579 Merged revisions 82167 via svnmerge from by Benjamin Peterson · 14 years ago
  55. 1fa17e6 Merged revisions 82165 via svnmerge from by Benjamin Peterson · 14 years ago
  56. 60995fb Merged revisions 82160 via svnmerge from by Benjamin Peterson · 14 years ago
  57. 0820e93 Blocked revisions 82161 via svnmerge by Benjamin Peterson · 14 years ago
  58. 285a689 Merged revisions 82157 via svnmerge from by Benjamin Peterson · 14 years ago
  59. 0fdbd97 Blocked revisions 82155 via svnmerge by Benjamin Peterson · 14 years ago
  60. 1b40292 Added more test cases by Alexander Belopolsky · 14 years ago
  61. 0aae6dc Minor comment formatting. by Senthil Kumaran · 14 years ago
  62. c5b81ee Minor docs issue. by Senthil Kumaran · 14 years ago
  63. b00697e Merged revisions 82126-82127 via svnmerge from by Thomas Heller · 14 years ago
  64. 31b16a5 Merged revisions 82130 via svnmerge from by Benjamin Peterson · 14 years ago
  65. 75f94c2 Issue #9005: Prevent utctimetuple() from producing year 0 or year 10,000. by Alexander Belopolsky · 14 years ago
  66. c56b094 Move over to assertIs. by Brett Cannon · 14 years ago
  67. 6ded1d5 Merged revisions 82117 via svnmerge from by Mark Dickinson · 14 years ago
  68. 851ffef add copyright years by Benjamin Peterson · 14 years ago
  69. 95d6264 update release schedule url by Benjamin Peterson · 14 years ago
  70. 051291f Blocked revisions 82112 via svnmerge by Benjamin Peterson · 14 years ago
  71. 6ed7ac4 Revert r82089. Commit was intended for a branch. by Jean-Paul Calderone · 14 years ago
  72. 867c435 merge forward from the python 2.x branch by Jean-Paul Calderone · 14 years ago
  73. 2aa3af4 Issue #8939: Improve arg.rst by Victor Stinner · 14 years ago
  74. 1ddd407 Merged revisions 82075 via svnmerge from by Jean-Paul Calderone · 14 years ago
  75. f568218 Issue #6641: Original commit for this issue, r82053, introduced a by Alexander Belopolsky · 14 years ago
  76. 49d7a57 Added a new line at the end of the file. by Alexander Belopolsky · 14 years ago
  77. 3fe3e12 Fixed a typo in a comment. by Alexander Belopolsky · 14 years ago
  78. 80f1b05 Fix Issue1368368 - prompt_user_passwd() in FancyURLopener masks 401 Unauthorized error page by Senthil Kumaran · 14 years ago
  79. 2cd1252 Issue #6543: Mention the author of the patch, Amaury Forgeot d'Arc by Victor Stinner · 14 years ago
  80. 0fe25a4 Issue #6543: Write the traceback in the terminal encoding instead of utf-8. by Victor Stinner · 14 years ago
  81. 870f09a Issue #8203: Fix IDLE Credits dialog: view_file() uses its encoding argument. by Victor Stinner · 14 years ago
  82. 7c9627b Typo repair. by Barry Warsaw · 14 years ago
  83. ca94f55 Issue #6641: The datetime.strptime method now supports the %z directive. by Alexander Belopolsky · 14 years ago
  84. f4112e2 Add note about changes to the `round` function between 2.x and 3.x. by Mark Dickinson · 14 years ago
  85. 684760a Merged revisions 82047 via svnmerge from by Senthil Kumaran · 14 years ago
  86. 4155f97 Don't use os.normcase when the result we are expecting is None. by R. David Murray · 14 years ago
  87. d35a32e Issue #9011: Remove buggy and unnecessary ST->AST compilation code by Mark Dickinson · 14 years ago
  88. a1b3740 Merged revisions 82039 via svnmerge from by R. David Murray · 14 years ago
  89. 2bdab24 Issue #850997: Oops, I forgot the author of the patch: Mark Hammond by Victor Stinner · 14 years ago
  90. 554f3f0 Issue #850997: mbcs encoding (Windows only) handles errors argument: strict by Victor Stinner · 14 years ago
  91. 79ee19f Issue #9012: Add _time.c and _time.h to the Visual Studio project file by Victor Stinner · 14 years ago
  92. d95a586 Issue #9012: "Separate compilation of time and datetime modules." by Alexander Belopolsky · 14 years ago
  93. 294f271 Merged revisions 82026 via svnmerge from by Senthil Kumaran · 14 years ago
  94. 97db43b Merged revisions 82018 via svnmerge from by Senthil Kumaran · 14 years ago
  95. 17c371c Remove versionadded accidentally introduced by r82008. by R. David Murray · 14 years ago
  96. a7a1572 Blocked revisions 81571,81678 via svnmerge by R. David Murray · 14 years ago
  97. 45e0e14 Merged revisions 81675 via svnmerge from by R. David Murray · 14 years ago
  98. 9691e59 Merged revisions 81634 via svnmerge from by R. David Murray · 14 years ago
  99. ab4fd61 Fix for buildbot failure in r81999. by Ronald Oussoren · 14 years ago
  100. b39a0c2 Issue 5094: minor documentation fixes by Alexander Belopolsky · 14 years ago