1. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  2. e20ad35 Move decl so it compiles with C89. by Neal Norwitz · 17 years ago
  3. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  4. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  5. 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
  6. c5724de get rid of some more PyString uses. by Guido van Rossum · 17 years ago
  7. ebe8f8a Minor cleanup of the comment for PyErr_ProgramText() and a tweak to the code by Guido van Rossum · 17 years ago
  8. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  9. 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
  10. 8ce81f7 Merged revisions 58211-58220 via svnmerge from by Thomas Wouters · 17 years ago
  11. 7ce29ca Whitespace cleanup. by Thomas Wouters · 17 years ago
  12. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  13. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  14. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  15. 4a7b5d5 Decode input() with stdin.encoding. Fixes #1097. by Martin v. Löwis · 17 years ago
  16. 5d12abe Patch #1075: Use wide API to format error messages. by Martin v. Löwis · 17 years ago
  17. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  18. 37f1038 Changed to use 'U' argument to PyArg_ParseTuple, instead of manually checking for unicode objects. by Eric Smith · 17 years ago
  19. 5deb210 Explicitly convert err->text to Unicode. Fixes #1069. by Martin v. Löwis · 17 years ago
  20. 64fd6fb Ugh, hopefully I can get this right. The code is only compiled on Win64 by Neal Norwitz · 17 years ago
  21. b879f57 Try to fix the problem of passing a non-int on Win64 right this time. by Neal Norwitz · 17 years ago
  22. 538d17a Try to fix a problem with large values on Win64. Diagnosed by Thomas Heller by Neal Norwitz · 17 years ago
  23. c2550c7 Remove chr8, we're not likely to need it at this point by Neal Norwitz · 17 years ago
  24. 71d4a34 Customary 2nd submit of this file after it's been changed. by Guido van Rossum · 17 years ago
  25. 8193669 Added test cases for string.Formatter subclassing. by Eric Smith · 17 years ago
  26. 32347fb Update import.c's MAGIC value for the new raise syntax (as opposed to merely updating the comment). by Collin Winter · 17 years ago
  27. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  28. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  29. 63175a1 [Oops, I forgot half of the patch.] by Guido van Rossum · 17 years ago
  30. fb67be2 Three patches from issue #1047, by Amaury Forgeot d'Arc: by Guido van Rossum · 17 years ago
  31. 56e4a84 Added test to ensure __format__ methods return unicode objects. by Eric Smith · 17 years ago
  32. a4b8d1d Some changes in preparation of stricter rules about mixing str and bytes. by Guido van Rossum · 17 years ago
  33. e226b55 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). by Eric Smith · 17 years ago
  34. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  35. 2bad970 Make some internal functions static by Neal Norwitz · 17 years ago
  36. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  37. 80e7f27 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  38. da059e3 Use unicode by Neal Norwitz · 17 years ago
  39. 5616c6d Fix a couple of warnings by Neal Norwitz · 17 years ago
  40. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  41. a9ea3d9 Regenerate by Neal Norwitz · 17 years ago
  42. a369c5a Use unicode by Neal Norwitz · 17 years ago
  43. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  44. e4dc324 Use unicode for AST attributes by Neal Norwitz · 17 years ago
  45. aefab1e Use unicode by Neal Norwitz · 17 years ago
  46. f308132 Add const to input string parameters by Neal Norwitz · 17 years ago
  47. 41103bf Ensure that code object names (co_name) are unicode. by Neal Norwitz · 17 years ago
  48. a5d16a3 Use unicode for error messages of duplicate args by Neal Norwitz · 17 years ago
  49. b382b84 Add const to some strings that are not modified by Neal Norwitz · 17 years ago
  50. cd79596 Use unicode for much of errors. by Neal Norwitz · 17 years ago
  51. 04110fb Merged revisions 57221-57391 via svnmerge from by Guido van Rossum · 17 years ago
  52. 15d3d04 Before calling _PyType_Lookup() the type needs to be initialized. by Guido van Rossum · 17 years ago
  53. 2fa33db Finish the work on __round__ and __trunc__. With Alex Martelli and Keir Mierle. by Guido van Rossum · 17 years ago
  54. ae211f9 Implement the round functionality for PEP 3141, and add tests for it. by Alex Martelli · 17 years ago
  55. 86d8b34 Implement the trunc builtin for PEP 3141 by Alex Martelli · 17 years ago
  56. d5a5f5d Patch #1774414: make it possible to use SVK to develop Python. by Collin Winter · 17 years ago
  57. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  58. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  59. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  60. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  61. 3eed765 Bug #1772489: make dir() work on traceback objects again. by Collin Winter · 17 years ago
  62. ee634a4 Get rid of traceback.c:tb_getattr in favor of marking the members as READONLY. by Collin Winter · 17 years ago
  63. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  64. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  65. 2614e1d Remove obsolete ifdef. by Martin v. Löwis · 17 years ago
  66. d1cd4d4 Set sys.stdout.encoding properly. by Martin v. Löwis · 17 years ago
  67. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  68. 9edcc2e Handle error by Neal Norwitz · 17 years ago
  69. c76a250 Merged revisions 56782-56847 via svnmerge from by Guido van Rossum · 17 years ago
  70. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  71. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  72. ad8d300 SF patch# 1766592 by Paul Colomiets. Fix test_zipimport. by Guido van Rossum · 17 years ago
  73. 7a26534 Add a missing "rf.depth = 0;" to marshal_load(). by Guido van Rossum · 17 years ago
  74. 447d33e Implement PEP 3120. by Martin v. Löwis · 17 years ago
  75. f7a94e4 SF patch# 1761465 by Jeffrey Yasskin. Fix test_aepack and test_applesingle. by Guido van Rossum · 17 years ago
  76. 13d7799 Fix import of frozen package submodules to use Unicode. Fixes test_frozen. by Guido van Rossum · 17 years ago
  77. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  78. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  79. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  80. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  81. 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
  82. c3e7ffc obcheckin. by Guido van Rossum · 17 years ago
  83. ace8ba8 Revert a wrong commit. by Thomas Heller · 17 years ago
  84. f630dac Must create heaptypes with unicode names. by Thomas Heller · 17 years ago
  85. 992d4a3 Merged revisions 56154-56264 via svnmerge from by Guido van Rossum · 17 years ago
  86. 1bd2122 Silence compiler warning. by Guido van Rossum · 17 years ago
  87. a098294 Make test_urllib.py pass. Mostly str/bytes issues. by Guido van Rossum · 17 years ago
  88. e8432ac Upon exit, flush stdout and stderr (twice: before and after the code that by Guido van Rossum · 17 years ago
  89. 5e23d57 Changes to ctypes and Mac toolbox glue that fix test_threading and test_platform. by Guido van Rossum · 17 years ago
  90. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  91. d094130 Revert r56044 (which changed the %c format specifier to accept a by Walter Dörwald · 17 years ago
  92. 486364b Merged revisions 56020-56124 via svnmerge from by Guido van Rossum · 17 years ago
  93. bc1f886 Change %c format specifier for PyArg_ParseTuple() so that it accepts by Walter Dörwald · 17 years ago
  94. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  95. 96ca691 Make sys.path and sys.argv into lists of strings. by Guido van Rossum · 17 years ago
  96. bdbb395 Looks like an oopsie -- I ignored a warning at my peril. by Guido van Rossum · 17 years ago
  97. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  98. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  99. 6e8fcae Make module docstrings unicode objects. by Walter Dörwald · 17 years ago
  100. 427dbff Revert 55876. Use PyUnicode_AsEncodedString instead. by Martin v. Löwis · 17 years ago