1. 171f391 Minor wordsmithing. by Raymond Hettinger · 18 years ago
  2. 0f75f98 Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, for by Thomas Heller · 18 years ago
  3. 2077131 Doc build should work with 2.4 now. by Georg Brandl · 18 years ago
  4. 7155a09 Add Python-specific content to Doc dir. Update configuration file by Georg Brandl · 18 years ago
  5. 415c1e3 Raise a TypeError instead of a ValueError when too many initializers by Thomas Heller · 18 years ago
  6. 02ec289 Raise a TypeError if conflicting positional and named arguments are by Thomas Heller · 18 years ago
  7. 902d307 Convert the internal ctypes array type cache to a WeakValueDict so by Thomas Heller · 18 years ago
  8. 5c8b2ab Fix MSDN library URL. (#1854) by Georg Brandl · 18 years ago
  9. 95f17bb Markup fix by Andrew M. Kuchling · 18 years ago
  10. aa35554 Add PEP 3141 section by Andrew M. Kuchling · 18 years ago
  11. c8acc88 Docstring typos by Andrew M. Kuchling · 18 years ago
  12. ff0f267 test_doctest fails since r59984. by Amaury Forgeot d'Arc · 18 years ago
  13. e805782 Fix-up half-written paragraph in the docs by Raymond Hettinger · 18 years ago
  14. f59e962 Refactor if/elif chain for clarity and speed. Remove dependency on subclasses having to implement _empty and _full. by Raymond Hettinger · 18 years ago
  15. cad3724 Issue #1786 (by myself): pdb should use its own stdin/stdout around an by Guido van Rossum · 18 years ago
  16. 7b1e917 Restore description of sys.dont_write_bytecode. by Andrew M. Kuchling · 18 years ago
  17. d7b0033 Add rational.Rational as an implementation of numbers.Rational with infinite by Jeffrey Yasskin · 18 years ago
  18. ca9c6e4 Remove duplicate entry. by Georg Brandl · 18 years ago
  19. af30b28 Typo. by Georg Brandl · 18 years ago
  20. 907cda6 Small grammar nit by Raymond Hettinger · 18 years ago
  21. cbf8f6c Temporarily revert 59967 until GC can be added. by Raymond Hettinger · 18 years ago
  22. f233b0c Better (?) text describing the lack of guarantees provided by qsize(), by Skip Montanaro · 18 years ago
  23. d4c2e86 Tighten the definition of a named tuple. by Raymond Hettinger · 18 years ago
  24. c216df9 Issue 1820: structseq objects did not work with the % formatting operator or isinstance(t, tuple). by Raymond Hettinger · 18 years ago
  25. a01ed03 Repair unfinished sentence by Andrew M. Kuchling · 18 years ago
  26. 2e46355 Add many items by Andrew M. Kuchling · 18 years ago
  27. f15ff46 Markup fix by Andrew M. Kuchling · 18 years ago
  28. 7ce9b18 Typo fixes by Andrew M. Kuchling · 18 years ago
  29. 351e1a3 Fix 1698398: Zipfile.printdir() crashed because the format string expected a tuple object of length six instead of a time.struct_time object. by Raymond Hettinger · 18 years ago
  30. 5d8b379 Update description of float_info by Andrew M. Kuchling · 18 years ago
  31. 7a66a1b Issue 1821: configure libffi for amd64 on FreeeBSD. by Thomas Heller · 18 years ago
  32. c3b2a4a Added more comments to the new structseq repr code and implemented several of Neal's suggestions. by Christian Heimes · 18 years ago
  33. c94e2b5 Now that I've learnt about structseq objects I felt like converting sys.float_info to a structseq. It's by Christian Heimes · 18 years ago
  34. f31b69f Applied patch #1816: sys.flags patch by Christian Heimes · 18 years ago
  35. 620fbe6 I missed the most important file by Christian Heimes · 18 years ago
  36. 9c20196 Added new an better structseq representation. E.g. repr(time.gmtime(0)) now returns 'time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)' instead of '(1970, 1, 1, 0, 0, 0, 3, 1, 0)'. The feature is part of #1816: sys.flags by Christian Heimes · 18 years ago
  37. 7cdf5f5 ?Why did my tests not notice this before? by Amaury Forgeot d'Arc · 18 years ago
  38. e4c270c Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) by Amaury Forgeot d'Arc · 18 years ago
  39. 08ccf20 As discussed in issue 1700288: by Amaury Forgeot d'Arc · 18 years ago
  40. d1c131a Back out r59931 - test_ctypes fails with it. by Georg Brandl · 18 years ago
  41. 9e0f116 Check in the patch proposed by Ben Hayden (benjhayden) for issue by Ka-Ping Yee · 18 years ago
  42. 5f0b7ae Make Modules/socketobject.c compile for Windows again. by Thomas Heller · 18 years ago
  43. 9f1e2ec Clarify the effect of text mode. by Georg Brandl · 18 years ago
  44. 8bdd044 Fix spelling. by Raymond Hettinger · 18 years ago
  45. c20ed51 Named tuple is a concept, not a specific type. by Raymond Hettinger · 18 years ago
  46. fca4e1f Fix editing glitch. by Georg Brandl · 18 years ago
  47. 27e26ec Patch #1700288: Method cache optimization, by Armin Rigo, ported to by Georg Brandl · 18 years ago
  48. 57fe0f2 Move OSError docs to exceptions doc, remove obsolete descriptions by Georg Brandl · 18 years ago
  49. 59bc20b Issue 1780: Allow leading and trailing whitespace in Decimal constructor, by Mark Dickinson · 18 years ago
  50. bed4dd4 Update the opcode docs for STORE_MAP and BUILD_MAP by Raymond Hettinger · 18 years ago
  51. 43617bc Fix a potential 'SystemError: NULL result without error'. by Thomas Heller · 18 years ago
  52. c682614 Raise an error instead of crashing with a segfault when a NULL by Thomas Heller · 18 years ago
  53. de68037 Bug #1790: update link; remove outdated paragraph by Andrew M. Kuchling · 18 years ago
  54. 0f6a656 Speed-up and simplify code urlparse's result objects. by Raymond Hettinger · 18 years ago
  55. 0f97393 Removed unused variable by Christian Heimes · 18 years ago
  56. eb65c99 Revert revision 59913, because it was wrong: by Thomas Heller · 18 years ago
  57. 348fd45 The sqlite3 dll, when compiled in debug mode, must be linked with /MDd by Thomas Heller · 18 years ago
  58. e3c3db5 Documentation for r5990[3567]. by Georg Brandl · 18 years ago
  59. 2f32c39 News entries for rev. 5990[567]. by Georg Brandl · 18 years ago
  60. ff15c86 Guard definition of TIPC_SUB_CANCEL with an #ifdef. by Georg Brandl · 18 years ago
  61. d17315f Add an important missing blank. by Thomas Heller · 18 years ago
  62. 0ff4daf Improve usability of the SequenceMatcher by returning named tuples describing match ranges. by Raymond Hettinger · 18 years ago
  63. e896acc Let most inspect functions return named tuples by Raymond Hettinger · 18 years ago
  64. 097a190 Have Decimal.as_tuple return a named tuple. by Raymond Hettinger · 18 years ago
  65. a7d984e Comment-out missing constant (from rev 59819) by Raymond Hettinger · 18 years ago
  66. fff4e6e Doctest results return a named tuple for readability by Raymond Hettinger · 18 years ago
  67. d1ef854 Run doctests on the collections module by Raymond Hettinger · 18 years ago
  68. 15b5e55 Neaten-up the named tuple docs by Raymond Hettinger · 18 years ago
  69. d08a8eb Closing issue1761. by Amaury Forgeot d'Arc · 18 years ago
  70. e850c46 Clarify how to add a field to a named tuple. by Raymond Hettinger · 18 years ago
  71. e165508 Examples for named tuple subclassing should include __slots__ by Raymond Hettinger · 18 years ago
  72. 44c38c1 Reflow a paragraph, and fix a typo. by Thomas Heller · 18 years ago
  73. 7c22ccc Check for fd of -1 to save fsync() and fstat() call by Andrew M. Kuchling · 18 years ago
  74. 3fc15b8 Reword entry, not sure I made it much better though. by Neal Norwitz · 18 years ago
  75. 61390fd Change amd64 buildbot scripts to use Visual Studio 2008, and by Thomas Heller · 18 years ago
  76. f71b59b Change amd64 buildbot scripts to use Visual Studio 2008, and by Thomas Heller · 18 years ago
  77. 3403f15 Fixed #1776. __import__() no longer imports modules by file name by Christian Heimes · 18 years ago
  78. 195b883 vs9to8 sync by Christian Heimes · 18 years ago
  79. 3eb4aa7 Related to patch #1114: fix another place where attr_t is assumed to be a long by Andrew M. Kuchling · 18 years ago
  80. 3247aa9 Set the output file in the _ctypes Debug|x64 configuration. by Thomas Heller · 18 years ago
  81. dc1854d Fix typo by Raymond Hettinger · 18 years ago
  82. d4e5613 minor cleaning by Fred Drake · 18 years ago
  83. e11230e Syntax highlighting only works when >>> lines are accompanied by ... lines by Raymond Hettinger · 18 years ago
  84. 4473d22 Issue 846388. Adds a call to PyErr_CheckSignals to by Facundo Batista · 18 years ago
  85. 8d10167 Better method for associating .py files with the interpreter. by Georg Brandl · 18 years ago
  86. 502d631 Fix markup errors from r59857 and clarify key.__enter__/__exit__ docs by Georg Brandl · 18 years ago
  87. b39a756 Added __enter__ and __exit__ functions to HKEY object by Christian Heimes · 18 years ago
  88. 41f278f Use relative instead of absolute filenames in the C-level tracebacks. by Thomas Heller · 18 years ago
  89. 62182c8 Patch 1114: fix compilation of curses module on 64-bit AIX, and any other LP64 platforms where attr_t isn't a C long by Andrew M. Kuchling · 18 years ago
  90. e0a49b6 Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects by Andrew M. Kuchling · 18 years ago
  91. 52b2579 Issue #1757: The hash of a Decimal instance is no longer affected by Facundo Batista · 18 years ago
  92. f66f95d It's verbose, not debug by Christian Heimes · 18 years ago
  93. ac5742e Docs on named tuple's naming conventions and limits of subclassing by Raymond Hettinger · 18 years ago
  94. 5816714 Expand comment. by Raymond Hettinger · 18 years ago
  95. f6b769b Documentation nits. by Raymond Hettinger · 18 years ago
  96. f5e8af1 Use get() instead of pop() for the optimized version of _replace(). by Raymond Hettinger · 18 years ago
  97. fb3ced6 Minor markup fix by Raymond Hettinger · 18 years ago
  98. 9a35921 Cleanup named tuple subclassing example. by Raymond Hettinger · 18 years ago
  99. 4d7e670 Fixed indention problem that caused the second TIPC test to run on systems without TIPC by Christian Heimes · 18 years ago
  100. aa0665b Added section about adding contextual information to log output. by Vinay Sajip · 18 years ago