1. 378170d Issue 17447: Clarify that str.isidentifier doesn't check for reserved keywords. by Raymond Hettinger · 11 years ago
  2. 0f84764 Issue #17047: remove doubled words added in 3.3 by Terry Jan Reedy · 11 years ago
  3. 4c1b9f4 fix typo; thanks to Andrew Harrington from docs@ by Sandro Tosi · 12 years ago
  4. bb4e941 Add a str class entry to the "Text Sequence Type" section (issue #16209). by Chris Jerdonek · 12 years ago
  5. 5fae0e5 Improve str() and object.__str__() documentation (issue #13538). by Chris Jerdonek · 12 years ago
  6. a3ad8a0 #16440: merge with 3.2. by Ezio Melotti · 12 years ago
  7. 8b6b176 #16440: fix exception type and clarify example. by Ezio Melotti · 12 years ago
  8. 7cac2d8 Merge issue #16439: Fix markup in example for stdtypes. by Andrew Svetlov · 12 years ago
  9. 5c90436 Issue #16439: Fix markup in example for stdtypes. by Andrew Svetlov · 12 years ago
  10. 1c8bb9f Merge from 3.2: link to mapping glossary entry in docs. by Chris Jerdonek · 12 years ago
  11. 11f3f17 Link to mapping glossary entry in "Mapping Types - dict" and os.environ docs. by Chris Jerdonek · 12 years ago
  12. 4af77a0 Issue #15814: Use hash function that is compatible with the equality by Stefan Krah · 12 years ago
  13. 129f57b Merge: Reword set docs to use *proper subset/superset* terminology. by Andrew Svetlov · 12 years ago
  14. 5bb4207 Reword set docs to use *proper subset/superset* terminology. by Andrew Svetlov · 12 years ago
  15. 971ba4c #16337: fix typo. by Ezio Melotti · 12 years ago
  16. a5941f8 #16206: merge with 3.2. by Ezio Melotti · 12 years ago
  17. a20879f #16206: Improve examples about dict construction. by Ezio Melotti · 12 years ago
  18. 39b8670 Issue #16206: Merge dict documentation improvements from 3.2. by Chris Jerdonek · 12 years ago
  19. f341317 Issue #16206: Improve the documentation of the dict constructor. by Chris Jerdonek · 12 years ago
  20. 1dd7c30 Merge __next__ method link fixes with 3.2. by Ezio Melotti · 12 years ago
  21. 7fa8222 Fix links to the __next__ method. by Ezio Melotti · 12 years ago
  22. c33899b Add and adjust some string-related links in the docs. by Chris Jerdonek · 12 years ago
  23. 8429b67 #15831: merge with 3.2 by Ezio Melotti · 12 years ago
  24. e8677c0 Issue #15855: updated related manual entries. by Alexander Belopolsky · 12 years ago
  25. a3b84fb Issue #15814: Documentation: disallow hashing of multi-dimensional memoryviews. by Stefan Krah · 12 years ago
  26. dbf56c2 Issue #15814: Document planned restrictions for memoryview hashes in 3.3.1. by Stefan Krah · 12 years ago
  27. ab0c3c7 Issue #15724: Add versionchanged tags to the memoryview documentation. by Stefan Krah · 12 years ago
  28. 06e1ab0 Close #15573: use value-based memoryview comparisons (patch by Stefan Krah) by Nick Coghlan · 12 years ago
  29. 83c0ae5 Address most of Ezio's comments. str/bytes/bytearray docs still need consolidation by Nick Coghlan · 12 years ago
  30. 273069c Close #4966: revamp the sequence docs in order to better explain the state of modern Python by Nick Coghlan · 12 years ago
  31. 27bbcfb Merge #15543: glossary entry for and 'universal newlines', and links to it. by R David Murray · 12 years ago
  32. 1b00f25 #15543: glossary entry for and 'universal newlines', and links to it. by R David Murray · 12 years ago
  33. 5a5e8dd merge with 3.2 by Sandro Tosi · 12 years ago
  34. 82a509c add missing quote in splitlines() example; thanks to Yevgen Yampolskiy from docs@ by Sandro Tosi · 12 years ago
  35. 638de33 Merge #15554: clarify splitlines/split differences. by R David Murray · 12 years ago
  36. 05c35a6 #15554: clarify splitlines/split differences. by R David Murray · 12 years ago
  37. f4b26ef #14957: fix doc typo. by R David Murray · 12 years ago
  38. 554b348 #14957: fix doc typo. by R David Murray · 12 years ago
  39. 5a0d439 #14957: clarify splitlines docs. by R David Murray · 12 years ago
  40. ae1b94b #14957: clarify splitlines docs. by R David Murray · 12 years ago
  41. d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 12 years ago
  42. 9a23490 Issue #14417: Mutating a dict during lookup now restarts the lookup instead of raising a RuntimeError (undoes issue #14205). by Antoine Pitrou · 12 years ago
  43. 708d88c merge with 3.2 by Sandro Tosi · 12 years ago
  44. 3918b1e Issue #14793: fix grammar in bytes object paragraph; patch by Tshepang Lekhonkhobe by Sandro Tosi · 12 years ago
  45. fd7aaab #14763: merge with 3.2. by Ezio Melotti · 12 years ago
  46. bf3165b #14763: document default maxsplit value for str.split. by Ezio Melotti · 12 years ago
  47. 89c4eef Issue #14691: indent the traceback so the example is highlighted by Sandro Tosi · 12 years ago
  48. 0db176f Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType by Victor Stinner · 12 years ago
  49. 226ed7e Fix indentation. by Georg Brandl · 12 years ago
  50. 2ac82f8 Fix indentation. by Georg Brandl · 12 years ago
  51. 50dbb3f Issue #14205: document the change of dict[key] behaviour if dict is modified by Victor Stinner · 12 years ago
  52. c45a8a1 Issue #14123: Explicitly mention that old style % string formatting has caveats but is not going away any time soon. by Gregory P. Smith · 12 years ago
  53. 3bbdc8e Issue #14123: Explicitly mention that old style % string formatting has caveats by Gregory P. Smith · 12 years ago
  54. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  55. cda6b6d #14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearray.split may now be passed as keyword arguments. by Ezio Melotti · 12 years ago
  56. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  57. 1ee86a1 merge with 3.2 by Sandro Tosi · 13 years ago
  58. 76dea27 Indent 'File' in memoryview example, so it is correctly highlighted by Sandro Tosi · 13 years ago
  59. b5d2710 merge with 3.2 by Sandro Tosi · 13 years ago
  60. c33ae06 fix error in memoryview example; thanks to kan lianlian from docs@ by Sandro Tosi · 13 years ago
  61. a5f6d0e merge 3.2 by Benjamin Peterson · 13 years ago
  62. b4b0b35 kill extra word by Benjamin Peterson · 13 years ago
  63. e9fca25 say bitwise (because I have no idea what a bit-string is) by Benjamin Peterson · 13 years ago
  64. 5b45a01 merge from 3.2 by Georg Brandl · 13 years ago
  65. 3b65fd7 #13816: fix two minor style issues. Thanks to Justin Wehnes for the patch. by Georg Brandl · 13 years ago
  66. 9430354 improve casefold/lower/upper docs by Benjamin Peterson · 13 years ago
  67. d5890c8 add str.casefold() (closes #13752) by Benjamin Peterson · 13 years ago
  68. f4ec3c5 #13754 String returned if less than *or equal to* x 3 by Terry Jan Reedy · 13 years ago
  69. 22ef4fa merge heads by Benjamin Peterson · 13 years ago
  70. b2bf01d use full unicode mappings for upper/lower/title case (#12736) by Benjamin Peterson · 13 years ago
  71. 610e814 Merge with 3.2 by Terry Jan Reedy · 13 years ago
  72. c42512d #13494: merge with 3.2. by Ezio Melotti · 13 years ago
  73. c1f26f6 #13494: s/cast/convert/. Also add a link. by Ezio Melotti · 13 years ago
  74. 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
  75. e333d00 Clarify concatenation behaviour of immutable strings, and remove explicit by Antoine Pitrou · 13 years ago
  76. fd9ebd4 Clarify concatenation behaviour of immutable strings, and remove explicit by Antoine Pitrou · 13 years ago
  77. ce4a9da Issue #13411: memoryview objects are now hashable when the underlying object is hashable. by Antoine Pitrou · 13 years ago
  78. 6e9002c Issue #13365: correct an error in the documentation of str.expandtabs. Patch by John Feuerstein by Eli Bendersky · 13 years ago
  79. c2c8960 Issue #13365: correct an error in the documentation of str.expandtabs by Eli Bendersky · 13 years ago
  80. 74e6495 Fixes #13270: obsolete reference to old-style/new-style classes. by Florent Xicluna · 13 years ago
  81. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  82. acfc97a Merge 3.2 by Florent Xicluna · 13 years ago
  83. ac65d96 Issue #12170: The count(), find(), rfind(), index() and rindex() methods by Antoine Pitrou · 13 years ago
  84. f106449 Merge with 3.2. by Ezio Melotti · 13 years ago
  85. 388349a Closes #12192: Document that mutating list methods do not return the instance (original patch by Mike Hoy). by Georg Brandl · 13 years ago
  86. 793c47a Merge doc changes from 3.2 (#10454, #12298) by Éric Araujo · 13 years ago
  87. 18ddf82 Add links from library/functions to other docs. by Éric Araujo · 13 years ago
  88. ae0cbde #12204: merge with 3.2. by Ezio Melotti · 13 years ago
  89. 0656a56 #12204: document that str.upper().isupper() might be False and add a note about cased characters. by Ezio Melotti · 13 years ago
  90. e4f9e2f #12665: merge with 3.2 by Sandro Tosi · 13 years ago
  91. 2a8d195 #12665: Dictionary view example has error in set operation by Sandro Tosi · 13 years ago
  92. 98f2b9b transition move technically correct to obviously so by Benjamin Peterson · 13 years ago
  93. 2c69e3d we can call singleton types now by Benjamin Peterson · 13 years ago
  94. 7f94feb merge 3.2 by Benjamin Peterson · 13 years ago
  95. 497cd65 add space by Benjamin Peterson · 13 years ago
  96. 50211fa document NotImplemented by Benjamin Peterson · 13 years ago
  97. 1d8b968 Merge from 3.2: Issue #12644: document the '%a' conversion in the old string formatting operations. Patch prepared together with Ezio Melotti by Eli Bendersky · 13 years ago
  98. ef4902a Issue #12644: document the '%a' conversion in the old string formatting operations. Patch prepared together with Ezio Melotti by Eli Bendersky · 13 years ago
  99. 276a58b Merge from 3.2 . Replace the term members with correct and appropriate terminology. Initial patch by Adam Woodbeck. by Senthil Kumaran · 13 years ago
  100. a6bac95 issue10403 - Let's not use members anymore. Use 'attribute' where it denotes attribute and 'methods' where it denotes methods. Context should clarify usage. by Senthil Kumaran · 13 years ago