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