1. 190d79e Merged revisions 60408-60440 via svnmerge from by Christian Heimes · 16 years ago
  2. fd66e51 Merged revisions 60383-60407 via svnmerge from by Christian Heimes · 16 years ago
  3. 2685563 Merged revisions 60364-60378 via svnmerge from by Christian Heimes · 16 years ago
  4. af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 16 years ago
  5. 1af737c Merged revisions 60176-60209 via svnmerge from by Christian Heimes · 16 years ago
  6. 9bd667a Merged revisions 60124-60142 via svnmerge from by Christian Heimes · 16 years ago
  7. a62da1d Merged revisions 59921-59932 via svnmerge from by Christian Heimes · 17 years ago
  8. 790c823 Merged revisions 59822-59841 via svnmerge from by Christian Heimes · 17 years ago
  9. 0625e89 Always define Py_USING_UNICODE, 3rd party software may depend on it. A missing declaration can lead to strange bugs as I had to learn the hard way in the upcoming merge by Christian Heimes · 17 years ago
  10. c36625b Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful for later versions of MSVC. VS6 claims that fortran is a reserved word by Christian Heimes · 17 years ago
  11. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  12. 1c9f437 Show in the sys.version string (bot not elsewhere) that this is more by Guido van Rossum · 17 years ago
  13. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  14. 8445104 Drop _PyLong_FitsInLong. Fixes #1666. by Martin v. Löwis · 17 years ago
  15. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  16. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  17. a3534a6 Issue #1587: Added instancemethod wrapper for PyCFunctions. The Python C API by Christian Heimes · 17 years ago
  18. 827b35c Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'. by Christian Heimes · 17 years ago
  19. 0ded5b5 Fixed issue #1564: The set implementation should special-case PyUnicode instead of PyString by Christian Heimes · 17 years ago
  20. 255f53b Merged revisions 59376-59406 via svnmerge from by Christian Heimes · 17 years ago
  21. 99533a9 Get ready for releasing 3.0a2. (Next: update the whatsnew docs.) by Guido van Rossum · 17 years ago
  22. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  23. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  24. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  25. f78b1c6 I've moved the remains of PyInt_ to the longobject.h header file and removed the inclusing of intobject.h from Python.h. Now the intobject.h exists only to provide some aliases for porters from Python 2.x. by Christian Heimes · 17 years ago
  26. b27ce7e Changed #ifdef 0 to #if 0. by Christian Heimes · 17 years ago
  27. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  28. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  29. 9385266 Merged revisions 59245-59254 via svnmerge from by Christian Heimes · 17 years ago
  30. 05a2fc2 Cleanups and documentation updates related to the removal of unbound methods. by Christian Heimes · 17 years ago
  31. c896700 Partial fix for bug #1306 by Christian Heimes · 17 years ago
  32. a22e8bd Added all PyTypeObjects to the appropriate header files. by Christian Heimes · 17 years ago
  33. ff73795 Removed the API to create unbound methods and simplified the API for bound methods. The signature is PyMethod_New(func, instance). by Christian Heimes · 17 years ago
  34. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
  35. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  36. bce52be Fixed some build issues and updated docs. by Christian Heimes · 17 years ago
  37. 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
  38. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  39. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  40. 5894ba7 Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. by Christian Heimes · 17 years ago
  41. 826d897 Patch 1352 (continued in issue 1329) by Christian Heimes. by Guido van Rossum · 17 years ago
  42. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  43. a2074f0 Kill PyString_Encode(), which isn't used anywhere. by Guido van Rossum · 17 years ago
  44. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  45. 6643cb2 Tweak the version *string* to clarify that this isn't your father's 3.0a1. :-) by Guido van Rossum · 17 years ago
  46. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  47. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  48. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  49. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  50. 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
  51. 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
  52. be801ac Delete bufferobject.[ch]. by Guido van Rossum · 17 years ago
  53. 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
  54. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  55. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  56. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  57. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  58. f2fc934 Get rid of METH_OLDARGS. by Georg Brandl · 17 years ago
  59. 231ff0e Fix a compile error on Windows. by Collin Winter · 17 years ago
  60. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  61. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  62. 0cfc8bd Update patch level to 3.0a1. We're close enough. by Guido van Rossum · 17 years ago
  63. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  64. e226b55 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). by Eric Smith · 17 years ago
  65. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  66. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  67. 312e10d Get rid of more uses of string and use const in a few places. by Neal Norwitz · 17 years ago
  68. 8ced961 Fix some comments by Neal Norwitz · 17 years ago
  69. 1978470 Fix typo in comment by Neal Norwitz · 17 years ago
  70. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  71. f308132 Add const to input string parameters by Neal Norwitz · 17 years ago
  72. 41cfce9 Remove PyArg_Parse usage from time module. (An extra set of eyeballs on by Skip Montanaro · 17 years ago
  73. b382b84 Add const to some strings that are not modified by Neal Norwitz · 17 years ago
  74. b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
  75. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  76. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  77. 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
  78. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  79. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  80. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  81. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  82. 13c3e38 Add XID_Start and XID_Continue properties to unicodectype. by Martin v. Löwis · 17 years ago
  83. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  84. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  85. d78f6cf Whitespace normalization. by Neal Norwitz · 17 years ago
  86. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  87. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  88. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  89. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  90. 992d4a3 Merged revisions 56154-56264 via svnmerge from by Guido van Rossum · 17 years ago
  91. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  92. 2d28f59 Add asserts to PyBytes_AS_STRING and PyBytes_GET_SIZE. by Guido van Rossum · 17 years ago
  93. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  94. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  95. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  96. 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 17 years ago
  97. 573c08c Change PyErr_Format() to generate a unicode string (by using by Walter Dörwald · 17 years ago
  98. 1680713 Add interning of unicode strings by copying the functionality from by Walter Dörwald · 17 years ago
  99. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  100. 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 17 years ago