1. 6643cb2 Tweak the version *string* to clarify that this isn't your father's 3.0a1. :-) by Guido van Rossum · 17 years ago
  2. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  3. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  4. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  5. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  6. 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
  7. fe9bed0 Fix problems with memoryview object. There is still more to do to finish PEP 3118. The memory-view object needs to be fleshed out and the struct module needs to be modified. by Travis E. Oliphant · 17 years ago
  8. be801ac Delete bufferobject.[ch]. 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. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  11. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  12. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  13. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  14. f2fc934 Get rid of METH_OLDARGS. by Georg Brandl · 17 years ago
  15. 231ff0e Fix a compile error on Windows. by Collin Winter · 17 years ago
  16. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  17. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  18. 0cfc8bd Update patch level to 3.0a1. We're close enough. by Guido van Rossum · 17 years ago
  19. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  20. e226b55 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). by Eric Smith · 17 years ago
  21. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  22. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  23. 312e10d Get rid of more uses of string and use const in a few places. by Neal Norwitz · 17 years ago
  24. 8ced961 Fix some comments by Neal Norwitz · 17 years ago
  25. 1978470 Fix typo in comment by Neal Norwitz · 17 years ago
  26. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  27. f308132 Add const to input string parameters by Neal Norwitz · 17 years ago
  28. 41cfce9 Remove PyArg_Parse usage from time module. (An extra set of eyeballs on by Skip Montanaro · 17 years ago
  29. b382b84 Add const to some strings that are not modified by Neal Norwitz · 17 years ago
  30. b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
  31. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  32. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  33. 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
  34. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  35. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  36. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  37. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  38. 13c3e38 Add XID_Start and XID_Continue properties to unicodectype. by Martin v. Löwis · 17 years ago
  39. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  40. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  41. d78f6cf Whitespace normalization. by Neal Norwitz · 17 years ago
  42. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  43. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  44. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  45. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  46. 992d4a3 Merged revisions 56154-56264 via svnmerge from by Guido van Rossum · 17 years ago
  47. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  48. 2d28f59 Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE. by Guido van Rossum · 17 years ago
  49. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  50. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  51. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  52. 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 17 years ago
  53. 573c08c Change PyErr_Format() to generate a unicode string (by using by Walter Dörwald · 17 years ago
  54. 1680713 Add interning of unicode strings by copying the functionality from by Walter Dörwald · 17 years ago
  55. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  56. 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 17 years ago
  57. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  58. 14176a5 Add missing #define. by Walter Dörwald · 17 years ago
  59. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  60. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 17 years ago
  61. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  62. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  63. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  64. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  65. acaa5a1 Add PyUnicode_FromString(), which create a unicode object from a by Walter Dörwald · 17 years ago
  66. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  67. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  68. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  69. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 18 years ago
  70. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 18 years ago
  71. 670e692 Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API. by Collin Winter · 18 years ago
  72. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 18 years ago
  73. 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 18 years ago
  74. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 18 years ago
  75. 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 18 years ago
  76. 88d65bd I assume this was supposed to be Py_ssize_t since there are no uses of plain ssize_t. by Neal Norwitz · 18 years ago
  77. 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 18 years ago
  78. 6baa4c4 Whoops, fix build breakage. There were still a few uses of the bool type. by Neal Norwitz · 18 years ago
  79. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 18 years ago
  80. ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 18 years ago
  81. 7ea15d0 Prevent regeneration. by Thomas Wouters · 18 years ago
  82. 00e41de Bytes literal. by Thomas Wouters · 18 years ago
  83. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
  84. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
  85. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 18 years ago
  86. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 18 years ago
  87. 452bf51 Essential changes for print function changes. by Guido van Rossum · 18 years ago
  88. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
  89. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  90. 16be03e Some more changes related to the new except syntax and semantics, by Guido van Rossum · 18 years ago
  91. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  92. f6657e6 Cruft removal: by Neal Norwitz · 18 years ago
  93. 545686b Remove PyFloat_AsReprString() and PyFloat_AsString() which should not by Neal Norwitz · 18 years ago
  94. 66a796e Patch #1601678: move intern() to sys.intern(). by Georg Brandl · 18 years ago
  95. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  96. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  97. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  98. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  99. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  100. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago