1. 1af737c Merged revisions 60176-60209 via svnmerge from by Christian Heimes · 17 years ago
  2. 1dfde1d Replace map(None, *iterables) with zip(*iterables). by Raymond Hettinger · 17 years ago
  3. e1c9811 Merged revisions 60143-60149 via svnmerge from by Christian Heimes · 17 years ago
  4. 9bd667a Merged revisions 60124-60142 via svnmerge from by Christian Heimes · 17 years ago
  5. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 17 years ago
  6. 679db4a Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from by Christian Heimes · 17 years ago
  7. 7736b5b Merged revisions 59952-59984 via svnmerge from by Guido van Rossum · 17 years ago
  8. d32ed6f Merged revisions 59933-59951 via svnmerge from by Christian Heimes · 17 years ago
  9. 3540b50 Good catch Neal! by Christian Heimes · 17 years ago
  10. 454f37b Merged revisions 59864-59882 via svnmerge from by Christian Heimes · 17 years ago
  11. 790c823 Merged revisions 59822-59841 via svnmerge from by Christian Heimes · 17 years ago
  12. 3b06e53 Another patch for #1762972: __file__ points to the py file instead pyo/pyc file by Christian Heimes · 17 years ago
  13. 043d6f6 Copied doc for reload() from trunk's function.rst to imp.rst by Christian Heimes · 17 years ago
  14. 13a7a21 Issue #1762972: Readded the reload() function as imp.reload() by Christian Heimes · 17 years ago
  15. faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 17 years ago
  16. 43b1509 Interpreter wasn't displaying the location of a SyntaxError Issue1692 by Kurt B. Kaiser · 17 years ago
  17. d6179e1 On Windows, when import fails to load a dll module, the message says by Amaury Forgeot d'Arc · 17 years ago
  18. 819b8bf More PyImport_ImportModule -> PyImport_ImportModuleNoBlock by Christian Heimes · 17 years ago
  19. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  20. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  21. e783700 Fix thoroughly misleading comment by Nick Coghlan · 17 years ago
  22. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  23. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  24. 2d378ab Fixed #1630 by Christian Heimes · 17 years ago
  25. 0449f63 Merged revisions 59488-59511 via svnmerge from by Christian Heimes · 17 years ago
  26. 94b7d3d Fixed #1593 spacing of the builtin_format function is inconsistent. Thanks to Joseph for the fix by Christian Heimes · 17 years ago
  27. 40d3a67 Issue #1573, second attempt: "def f(*, **kw)" now raises a SyntaxError. by Amaury Forgeot d'Arc · 17 years ago
  28. bc87341 Fixed #1573: Improper use of the keyword-only syntax makes the parser crash by Christian Heimes · 17 years ago
  29. b9eccbf Merged revisions 59333-59370 via svnmerge from by Christian Heimes · 17 years ago
  30. 6c193fa Solve issue 1400 at least in part -- whenever we run Python code, at the end by Guido van Rossum · 17 years ago
  31. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  32. 327858e Eliminate outdated usages of PyInt_GetMax. by Martin v. Löwis · 17 years ago
  33. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  34. 0fbab7f Removed another occurrence of PyInt_ExactCheck() by Christian Heimes · 17 years ago
  35. 3267f87 Remove special-casing of integer operations, to stop using PyInt_CheckExact. by Martin v. Löwis · 17 years ago
  36. de10c85 Manual merge of PEP 366 implementation from trunk (the automatic merge choked on the PyString->PyUnicode changes) by Nick Coghlan · 17 years ago
  37. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  38. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  39. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  40. 9385266 Merged revisions 59245-59254 via svnmerge from by Christian Heimes · 17 years ago
  41. 4e30a84 Merged revisions 59239-59244 via svnmerge from by Christian Heimes · 17 years ago
  42. 7d2ff88 Merged revisions 59226-59233 via svnmerge from by Christian Heimes · 17 years ago
  43. c896700 Partial fix for bug #1306 by Christian Heimes · 17 years ago
  44. 0d3fb8a Merged revisions 59107-59186 via svnmerge from by Guido van Rossum · 17 years ago
  45. 91c7730 Fixed bug in input() which broke pdb by Christian Heimes · 17 years ago
  46. e670bd4 fix #1409: cell variables were not initialized, by Amaury Forgeot d'Arc · 17 years ago
  47. 39599dc PyString_AsString is permissive and accepts unicode strings. by Amaury Forgeot d'Arc · 17 years ago
  48. b083400 Fix error messages for buffer objects to say "bytes" instead of "string". by Guido van Rossum · 17 years ago
  49. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  50. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  51. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  52. 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
  53. 9a68f8c Moved the initalization of the exception before the initialization of sys. by Christian Heimes · 17 years ago
  54. eb9b39b Paths and file names from the fs should always be decoded with PyUnicode_DecodeFSDefault and not PyUnicode_FromString by Christian Heimes · 17 years ago
  55. fef9bba Another #1415 fix for Windows GUI apps by Christian Heimes · 17 years ago
  56. db23308 Fixed space -> tab by Christian Heimes · 17 years ago
  57. 58cb1b8 Fix for #1415 pythonw.exe fails because std streams a missing by Christian Heimes · 17 years ago
  58. f05149a Correction for issue1265 (pdb bug with "with" statement). by Amaury Forgeot d'Arc · 17 years ago
  59. f19169f Fix for refleak tests through regrtest.py -R:: bug #1414 by Christian Heimes · 17 years ago
  60. 32fbe59 Merged revisions 58939-58946 via svnmerge from by Christian Heimes · 17 years ago
  61. 29fd712 Minimal change that disables (AFAICT) the interpolation of \u and \U inside by Guido van Rossum · 17 years ago
  62. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  63. 06cfe95 No need to include windows.h twice by Amaury Forgeot d'Arc · 17 years ago
  64. c1bdbc3 Cosmetic changes to Christian's patch r58903. by Guido van Rossum · 17 years ago
  65. 7d3bc0a Patch for bug http://bugs.python.org/issue1293 by Christian Heimes · 17 years ago
  66. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  67. c4cb3b8 Applied patch #1379 with a minor tweak. by Christian Heimes · 17 years ago
  68. 5894ba7 Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. by Christian Heimes · 17 years ago
  69. e845c0f Fixes for issue 1752184, ensuring type objects are always created by Guido van Rossum · 17 years ago
  70. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  71. 826d897 Patch 1352 (continued in issue 1329) by Christian Heimes. by Guido van Rossum · 17 years ago
  72. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  73. 2673a57 Bug #1356: Avoid using the C99 keyword 'restrict'. by Martin v. Löwis · 17 years ago
  74. 56cdf68 Try to fix some of the failing tests on Win64. PY_SSIZE_T_MAX (8 bytes) by Neal Norwitz · 17 years ago
  75. e1a0d11 #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. by Georg Brandl · 17 years ago
  76. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  77. 3bb42d9 Fix a memory leak caused by PyTokenizer_FindEncoding() returning a char * that by Brett Cannon · 17 years ago
  78. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  79. 21431e8 This is the uncontroversial half of patch 1263 by Thomas Lee: by Guido van Rossum · 17 years ago
  80. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  81. e20ad35 Move decl so it compiles with C89. by Neal Norwitz · 17 years ago
  82. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  83. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  84. ddacf96 Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer interface. Fix up array module to export the correct format for wide-builds. by Travis E. Oliphant · 17 years ago
  85. c5724de get rid of some more PyString uses. by Guido van Rossum · 17 years ago
  86. ebe8f8a Minor cleanup of the comment for PyErr_ProgramText() and a tweak to the code by Guido van Rossum · 17 years ago
  87. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  88. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  89. 8ce81f7 Merged revisions 58211-58220 via svnmerge from by Thomas Wouters · 17 years ago
  90. 7ce29ca Whitespace cleanup. by Thomas Wouters · 17 years ago
  91. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  92. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  93. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  94. 4a7b5d5 Decode input() with stdin.encoding. Fixes #1097. by Martin v. Löwis · 17 years ago
  95. 5d12abe Patch #1075: Use wide API to format error messages. by Martin v. Löwis · 17 years ago
  96. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  97. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  98. 5deb210 Explicitly convert err->text to Unicode. Fixes #1069. by Martin v. Löwis · 17 years ago
  99. 64fd6fb Ugh, hopefully I can get this right. The code is only compiled on Win64 by Neal Norwitz · 17 years ago
  100. b879f57 Try to fix the problem of passing a non-int on Win64 right this time. by Neal Norwitz · 17 years ago