1. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  2. 81f1130 Document os.device_encoding. by Georg Brandl · 17 years ago
  3. 69aabc0 Fix role usage. by Georg Brandl · 17 years ago
  4. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  5. 99170a5 Merged revisions 59541-59561 via svnmerge from by Christian Heimes · 17 years ago
  6. 2c18161 Merged revisions 59512-59540 via svnmerge from by Christian Heimes · 17 years ago
  7. 3377055 Fix sys.maxsize docs. by Georg Brandl · 17 years ago
  8. 0449f63 Merged revisions 59488-59511 via svnmerge from by Christian Heimes · 17 years ago
  9. 517b9dd Couple of corrections to open() doc as per email from GvR. by Mark Summerfield · 17 years ago
  10. ecff60e Updated open() to more accurately reflect io.open()'s documentation. by Mark Summerfield · 17 years ago
  11. 3805321 Merged revisions 59465-59487 via svnmerge from by Christian Heimes · 17 years ago
  12. a3534a6 Issue #1587: Added instancemethod wrapper for PyCFunctions. The Python C API by Christian Heimes · 17 years ago
  13. ad8dcd5 Minor cleanup in the gc module. by Amaury Forgeot d'Arc · 17 years ago
  14. 2f1019e Merged revisions 59441-59449 via svnmerge from by Christian Heimes · 17 years ago
  15. 3279b5d Merged revisions 59423-59440 via svnmerge from by Christian Heimes · 17 years ago
  16. cc595bd #1571: clarify removal of ``L`` suffix from long int repr. by Georg Brandl · 17 years ago
  17. da65f60 Fix one more PyInt occurrence. by Georg Brandl · 17 years ago
  18. d019fe2 Replace all remaining occurrences of PyInt_. by Georg Brandl · 17 years ago
  19. 895627f Merged revisions 59407-59422 via svnmerge from by Christian Heimes · 17 years ago
  20. 255f53b Merged revisions 59376-59406 via svnmerge from by Christian Heimes · 17 years ago
  21. 226679a Added -b option to the list of command line options by Christian Heimes · 17 years ago
  22. 15c3254 No -Q flag anymore in Py3k. by Georg Brandl · 17 years ago
  23. 7867208 Merged revisions 59371-59375 via svnmerge from by Christian Heimes · 17 years ago
  24. b9eccbf Merged revisions 59333-59370 via svnmerge from by Christian Heimes · 17 years ago
  25. 48dc27c most recent changes to SSL module to support non-blocking sockets properly by Bill Janssen · 17 years ago
  26. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  27. 327858e Eliminate outdated usages of PyInt_GetMax. by Martin v. Löwis · 17 years ago
  28. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  29. 8b0facf Merged revisions 59323-59332 via svnmerge from by Christian Heimes · 17 years ago
  30. c5d98b4 Document nonlocal statement. Written for GHOP by "Canadabear". by Georg Brandl · 17 years ago
  31. b00324f Merged revisions 59304-59312 via svnmerge from by Guido van Rossum · 17 years ago
  32. c6fe37b Fix merging glitch. by Georg Brandl · 17 years ago
  33. cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 17 years ago
  34. f929077 Reverting last commit. I had some staled data from an attempted svnmerge in my local sandbox by Christian Heimes · 17 years ago
  35. e69c320 Patch #1537 from Chad Austin by Christian Heimes · 17 years ago
  36. 6554cb9 Remove a few merged versionadded/changed. by Georg Brandl · 17 years ago
  37. aacc089 Remove mentions of "long integer" in the API docs. by Georg Brandl · 17 years ago
  38. 9914dd3 Remove PyInt API from the docs. Extend PyLong docs to cover all public functions in longobject.c. by Georg Brandl · 17 years ago
  39. 8d5c392 Remove all definitions of raw_input() that were still scattered throughout the docs by Georg Brandl · 17 years ago
  40. a09ca38 Fix some 2.xisms in merged docs. by Georg Brandl · 17 years ago
  41. 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
  42. d8654cf Merged revisions 59259-59274 via svnmerge from by Christian Heimes · 17 years ago
  43. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  44. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  45. 7e9df35 Remove merged versionadded tags from os docs. by Georg Brandl · 17 years ago
  46. 9385266 Merged revisions 59245-59254 via svnmerge from by Christian Heimes · 17 years ago
  47. 05a2fc2 Cleanups and documentation updates related to the removal of unbound methods. by Christian Heimes · 17 years ago
  48. 4e30a84 Merged revisions 59239-59244 via svnmerge from by Christian Heimes · 17 years ago
  49. 7d2ff88 Merged revisions 59226-59233 via svnmerge from by Christian Heimes · 17 years ago
  50. 2fd4f37 Merged revisions 59212-59225 via svnmerge from by Guido van Rossum · 17 years ago
  51. 5c10664 Remove further mentions of long integers. by Georg Brandl · 17 years ago
  52. ba956ae Remove mentions of "long integer" in the docs. by Georg Brandl · 17 years ago
  53. 0db3853 Removed more types from the types module by Christian Heimes · 17 years ago
  54. c9543e4 Removed the new module by Christian Heimes · 17 years ago
  55. ceee077 #1496: revert str.translate() to the old version, and add by Georg Brandl · 17 years ago
  56. 2e0b755 Futher update docs after unbound method removal. by Georg Brandl · 17 years ago
  57. 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
  58. 0d3fb8a Merged revisions 59107-59186 via svnmerge from by Guido van Rossum · 17 years ago
  59. 24eac03 Fix, thanks to Nick. by Georg Brandl · 17 years ago
  60. 9541463 Update docs for buffer -> bytearray rename. by Georg Brandl · 17 years ago
  61. 051d1dd The Identifiers and keywords syntax diagram did not appear correctly in the by Mark Summerfield · 17 years ago
  62. 87c0f1d Merged revisions 59041-59055 via svnmerge from by Guido van Rossum · 17 years ago
  63. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  64. 3d392eb Merged revisions 58947-59004 via svnmerge from by Guido van Rossum · 17 years ago
  65. 58cb1b8 Fix for #1415 pythonw.exe fails because std streams a missing by Christian Heimes · 17 years ago
  66. 96f3163 Merged revisions 58930-58938 via svnmerge from by Christian Heimes · 17 years ago
  67. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  68. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  69. a19f80c Merged revisions 58862-58885 via svnmerge from by Guido van Rossum · 17 years ago
  70. 7767711 Merged revisions 58817-58861 via svnmerge from by Guido van Rossum · 17 years ago
  71. db62967 Re-add two paragraphs that seem to have been lost during the merge from trunk. by Georg Brandl · 17 years ago
  72. 2cc30da Merged revisions 58742-58816 via svnmerge from by Guido van Rossum · 17 years ago
  73. 48decfe Remove file that should have been removed during the merge. by Georg Brandl · 17 years ago
  74. 3c8ce77 Add new directory "using". This should have been in the merge patch, by Georg Brandl · 17 years ago
  75. b0e8688 Remove duplicate entry for PyObject_AsFileDescriptor. (Really, this time.) by Georg Brandl · 17 years ago
  76. 9afde1c #1370: Finish the merge r58749, log below, by resolving all conflicts in Doc/. by Georg Brandl · 17 years ago
  77. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  78. bed6784 Get rid of more uses of string and use unicode by Neal Norwitz · 17 years ago
  79. a2074f0 Kill PyString_Encode(), which isn't used anywhere. by Guido van Rossum · 17 years ago
  80. 687b9c0 Patch 1318 by Christian Heimes: remove os.tmpnam(), os.tempnam(), by Guido van Rossum · 17 years ago
  81. 083bea4 Remove duplicate entry for PyObject_AsFileDescriptor. by Georg Brandl · 17 years ago
  82. d1cdf21 Update Pygments version from externals. by Georg Brandl · 17 years ago
  83. 7c67613 Update w.r.t. PEP 3137. by Georg Brandl · 17 years ago
  84. 94c2c75 Patch #1071: Improve unicode.translate() so that you can pass unicode by Georg Brandl · 17 years ago
  85. 3b8cb17 #1061 (mainly by Thomas Wouters): use weak sets for abc caches. by Georg Brandl · 17 years ago
  86. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  87. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  88. 8d2ef87 Update what the locale module documents about string operations. by Guido van Rossum · 17 years ago
  89. 0e474a8 remove hotshot profiler from Py3k by Fred Drake · 17 years ago
  90. 9f2c39a #1228: new comparison behavior. by Georg Brandl · 17 years ago
  91. 9f27df5 Remove buffer() from the docs. by Georg Brandl · 17 years ago
  92. 85c1ba5 Fix a minor typo. by Brett Cannon · 17 years ago
  93. 1d2aef5 Get the doc to build. by Neal Norwitz · 17 years ago
  94. 905ec32 #1219: py3k cleanup in standard types docs. by Georg Brandl · 17 years ago
  95. 2d2590d #1211, #1212, #1213: py3k fixes to the tutorial. by Georg Brandl · 17 years ago
  96. d2e44df Revert r58075 (incorrect docs patch). by Collin Winter · 17 years ago
  97. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  98. 4e02c50 Clarify the difference between text and binary files. I'm not sure the by Skip Montanaro · 17 years ago
  99. dd6d024 #1189: documentation for tp_as_* structs. by Georg Brandl · 17 years ago
  100. 4d8c193 Update the documentation of the open() builtin function a bit. I believe I by Skip Montanaro · 17 years ago