1. 9a2310d Merged revisions 65240-65242 via svnmerge from by Antoine Pitrou · 16 years ago
  2. 3dbca81 Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from by Georg Brandl · 16 years ago
  3. 8494d57 #3368: free string allocated by "es" ParseTuple format. by Georg Brandl · 16 years ago
  4. 2ad79e8 Merged revisions 65125 via svnmerge from by Eric Smith · 16 years ago
  5. a851397 Merger 65032 to py3k by Jesse Noller · 16 years ago
  6. e921e02 Fix uninitialized memory read for cases like def(f, *): pass by Jeremy Hylton · 16 years ago
  7. 2ee470f Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from by Georg Brandl · 16 years ago
  8. 86b2fb9 Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from by Georg Brandl · 16 years ago
  9. d88ddfa Make these files to compile again under Windows. by Thomas Heller · 16 years ago
  10. e652821 implement chained exception tracebacks by Benjamin Peterson · 16 years ago
  11. 06157a4 correct docstring by Benjamin Peterson · 16 years ago
  12. fbe94c5 Merged revisions 64842,64853,64856,64945 via svnmerge from by Robert Schuppenies · 16 years ago
  13. 0d748c2 Docstring typo by Mark Dickinson · 16 years ago
  14. a073e33 Correct a typo during previous checkin. by Amaury Forgeot d'Arc · 16 years ago
  15. a4db686 Issue #3280: like chr() already does, the "%c" format now accepts the full unicode range by Amaury Forgeot d'Arc · 16 years ago
  16. 809ddaa #3191: fix round() docs and docstring. by Georg Brandl · 16 years ago
  17. 07a1f94 Merged revisions 64622 via svnmerge from by Benjamin Peterson · 16 years ago
  18. db73491 Merged revisions 64549 via svnmerge from by Brett Cannon · 16 years ago
  19. 429ef65 Rename a variable to be more in line with the name of the module. by Brett Cannon · 16 years ago
  20. 6d7e7a7 Merged revisions 64491 via svnmerge from by Eric Smith · 16 years ago
  21. 9c74b14 Merged revisions 64114 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  22. 35c8658 Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,64253,64278,64280,64301,64303,64320,64328,64338-64339 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  23. 27d6367 improvements to the fix for #3114 by Benjamin Peterson · 16 years ago
  24. 979f311 #3114 fix a bus error when deallocated exceptions were used by Benjamin Peterson · 16 years ago
  25. b4fb6e4 Implicit exception chaining via __context__ (PEP 3134). by Guido van Rossum · 16 years ago
  26. e68df0f Merged revisions 64212 via svnmerge from by Benjamin Peterson · 16 years ago
  27. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  28. f1ca0b1 Issue 1342: Python could not start if installed in a directory by Amaury Forgeot d'Arc · 16 years ago
  29. eec3d71 #3021: Antoine Pitrou's Lexical exception handlers by Benjamin Peterson · 16 years ago
  30. 6cb0109 Fix typo. by Martin v. Löwis · 16 years ago
  31. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  32. f78e02b Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from by Georg Brandl · 16 years ago
  33. f08a9dd Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from by Georg Brandl · 16 years ago
  34. b2750b5 Move the codec decode type checks to bytes/bytearray.decode(). by Marc-André Lemburg · 16 years ago
  35. c5e88d5 Fix sys.flags sequence behavior and add a test case. by Georg Brandl · 16 years ago
  36. 00709aa Merged revisions 63856-63857,63859-63860 via svnmerge from by Martin v. Löwis · 16 years ago
  37. e1b5ac6 Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  38. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  39. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  40. 7cd068b Fix uninitialized variable access, release memory. by Martin v. Löwis · 16 years ago
  41. 0f59989 Forward-port PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  42. 4a7d76d Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  43. 74c71f5 #2957: marshal recursion limit exceeded when importing a large .pyc file by Amaury Forgeot d'Arc · 16 years ago
  44. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  45. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  46. d8b690f #2895: don't crash with bytes as keyword argument names. by Georg Brandl · 16 years ago
  47. d11ae5d Rename enumerate() kw argument name to "iterable" and fix "sequence"->"iterable" in some docstrings. by Georg Brandl · 16 years ago
  48. e9f305f Merged revisions 63208-63209,63211-63212,63214-63217,63219-63224,63226-63227,63229-63232,63234-63235,63237-63239,63241,63243-63246,63250-63254,63256-63259,63261,63263-63264,63266-63267,63269-63270,63272-63273,63275-63276,63278,63280-63281,63283-63284,63286-63287,63289-63290,63292-63293,63295-63296,63298-63299,63301-63302,63304-63305,63307,63309-63314,63316-63322,63324-63325,63327-63335,63337-63338,63340-63342,63344-63346,63348 via svnmerge from by Alexandre Vassalotti · 16 years ago
  49. eca20b6 Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-63152,63155-63165,63167-63176,63181-63186,63188-63189 via svnmerge from by Alexandre Vassalotti · 16 years ago
  50. 8ae3e05 Merged revisions 63066-63076,63079,63081-63085,63087-63097,63099,63101-63104 via svnmerge from by Alexandre Vassalotti · 16 years ago
  51. 5f8ced2 Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from by Alexandre Vassalotti · 16 years ago
  52. c06e1c2 remove mactoolboxglue by Benjamin Peterson · 16 years ago
  53. 0740459 #2798: PyArg_ParseTuple did not correctly handle the "s" code in case of unicode strings by Amaury Forgeot d'Arc · 16 years ago
  54. 5807c41 Merged revisions 63078 via svnmerge from by Eric Smith · 16 years ago
  55. 8d109cb Antoine Pitrou's patch for bug 2507; exception state lives too long in 3.0. by Barry Warsaw · 16 years ago
  56. bcd2c08 Fixed a memory leak introduced in r62462 by Christian Heimes · 16 years ago
  57. 8dc226f Merged revisions 62774-62775,62785,62787-62788 via svnmerge from by Christian Heimes · 16 years ago
  58. 77250f4 Added fast alternate io.BytesIO implementation and its test suite. by Alexandre Vassalotti · 16 years ago
  59. 5d8da20 Merged revisions 62713,62715,62728,62737,62740,62744,62749,62756 via svnmerge from by Christian Heimes · 16 years ago
  60. 9f4bf1d Fix merge error by Benjamin Peterson · 16 years ago
  61. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  62. a85998a Issue #1950: Fixed misusage of PyUnicode_AsString(). by Alexandre Vassalotti · 16 years ago
  63. aaa6392 Fix nits in builtin next(). by Georg Brandl · 16 years ago
  64. b2c7af8 Merged revisions 62586 via svnmerge from by Eric Smith · 16 years ago
  65. ae0b088 There is no reason for imp.get_magic() to return a mutable bytearray by Amaury Forgeot d'Arc · 16 years ago
  66. 3513358 Issue 2440: remove the guard around the handling of case 'n' in getargs.c's convertsimple() such that we always treat it as an index type, regardless of whether or not sizeof(size_t) == sizeof(long). Fix the test_args2.Signed_TestCase.test_n() such that it tests for adherence to PEP 357 (don't try and coerce objects that don't have nb_index slots but do have nb_int slots (i.e. floats) into indexes 'just because we can'). Three other commits are related to this one: r62269 and r62279, which were changes to PyNumber_Index (among other things) to check for nb_int slots when we lack nb_index slots -- and r62292, which is when I reverted these changes after various people pointed out that the test was in fact wrong, not the code. by Trent Nelson · 16 years ago
  67. dae2a89 Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-62379,62381 via svnmerge from by Christian Heimes · 16 years ago
  68. 53876d9 Merged revisions 62380,62382-62383 via svnmerge from by Christian Heimes · 16 years ago
  69. 32dde22 Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62055-62058,62060-62066,62068-62074,62076-62079,62081-62083,62086-62089,62092-62094,62098,62101,62104,62106-62109,62115-62122,62124-62125,62128,62130,62132,62134-62135,62137,62139-62140,62144,62146,62151,62155,62157,62162-62166,62171-62172,62175-62176,62178,62181-62186,62188-62192,62196,62200-62203,62206,62211-62213,62215-62218,62222,62224-62226,62228,62232,62236,62240-62245,62248,62250-62254,62256-62258,62262,62264-62265,62267-62270,62272-62276,62280-62288,62291-62292,62299-62301,62307,62312,62316-62318,62322-62331,62333-62337,62339-62344,62346-62348 via svnmerge from by Neal Norwitz · 16 years ago
  70. 33fe809 Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,62302-62306,62308,62311,62313-62315,62319-62321 via svnmerge from by Christian Heimes · 16 years ago
  71. 7179220 Issue 2440: revert r62269 and r62279. These changes were made in an effort to fix test_args2.Signed_TestCase.test_n(), which was failing on Windows x64 on the following line: 'self.failUnlessEqual(99, getargs_n(Long()))'. Although the two commits *did* fix the test on Windows x64, it's become clear that it's the test that's incorrect, and the changes to PyNumber_Index() in particular were not warranted (and actually violate PEP 357). This commit will get us back to where we were at r62268, before I started butchering things. by Trent Nelson · 16 years ago
  72. 7fedbe5 Add a NEWS entry for issue2221. by Amaury Forgeot d'Arc · 16 years ago
  73. e2ae468 Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), extend Objects/abstract.c's PyNumber_Index() to accept PyObjects that have nb_int slots, and update test_getargs2 to test that an exception is thrown when __int__() returns a non-int object. by Trent Nelson · 16 years ago
  74. 790465f Change command line processing API to use wchar_t. Fixes #2128. by Martin v. Löwis · 16 years ago
  75. 8dbca06 Reverted r62128 on Guido's orders by Benjamin Peterson · 16 years ago
  76. 9ed7735 Issue2221: in Idle, exec('xx') raised a SystemError('error return without exception set') by Amaury Forgeot d'Arc · 16 years ago
  77. 7afb766 #2541 Allow unicode escapes in raw strings by Benjamin Peterson · 16 years ago
  78. 36e6310 Fix refleak with nested classes. Fix originally by Amaury in r62015. by Neal Norwitz · 16 years ago
  79. ee9b10a Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62048,62050-62051,62055-62066,62068-62074,62076-62078 via svnmerge from by Neal Norwitz · 16 years ago
  80. ad74aa8 Merged revisions 62047 via svnmerge from by Neal Norwitz · 16 years ago
  81. 207c9f3 Merged revisions 62049,62054 via svnmerge from by Neal Norwitz · 16 years ago
  82. db4115f Merged revisions 62039-62042 via svnmerge from by Neal Norwitz · 16 years ago
  83. 617fa91 Merged revisions 62013-62014 via svnmerge from by Martin v. Löwis · 16 years ago
  84. 618dc5e Merged revisions 62004 via svnmerge from by Martin v. Löwis · 16 years ago
  85. bbe741d Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from by Christian Heimes · 16 years ago
  86. ba4af49 Merged revisions 61964-61979 via svnmerge from by Christian Heimes · 16 years ago
  87. 3a93212 Merged revisions 61958-61959 via svnmerge from by Christian Heimes · 16 years ago
  88. b1b3efc Merged revisions 61954,61956-61957 via svnmerge from by Christian Heimes · 16 years ago
  89. 4d6ec85 Merged revisions 61952-61953 via svnmerge from by Christian Heimes · 16 years ago
  90. cc47b05 Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,61889 via svnmerge from by Christian Heimes · 16 years ago
  91. fe337bf Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from by Christian Heimes · 16 years ago
  92. 5021ebc Properly terminate file name. by Martin v. Löwis · 16 years ago
  93. 896c317 Add XXX comments for whoever cleans up getargs.c :) by Georg Brandl · 16 years ago
  94. 8782408 Add __future__ import for print_function. It's a no-op in 3.0, but it needs to not be a syntax error. by Eric Smith · 16 years ago
  95. d5e2b6f Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,61580-61582,61586,61591,61593,61595,61605-61606,61613-61616,61618,61621-61623,61625,61627,61631-61634 via svnmerge from by Christian Heimes · 16 years ago
  96. 39e307e Issue2297: Fix a stack overflow in Windows caused by -v and -vv. When python is invoked with -v or -vv under Windows, the process of importing the codec for sys.stderr causes a message to be written to stderr, which in turn causes the codec to be recursively imported. Sometimes the stack overflow exception is swallowed, other times it is not. The bug depends on the particular locale settings of the Windows machine. by Trent Nelson · 16 years ago
  97. b186d00 Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,61468,61471-61474,61480,61483-61484,61488,61495-61496,61498,61503-61504,61507,61509-61510,61515-61518 via svnmerge from by Christian Heimes · 16 years ago
  98. 08976cb Merged revisions 61404-61407 via svnmerge from by Christian Heimes · 16 years ago
  99. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  100. deef674 Fix crasher in unpacking assignments with star, where the size constraints by Thomas Wouters · 16 years ago