1. 5092439 bpo-33892: Doc: Use gender neutral words (GH-7770) by Andrés Delfino · 6 years ago
  2. 19177fb bpo-33503: Fix the broken pypi link in the source and the documentation (GH-6814) by Stéphane Wirtel · 6 years ago
  3. a0a42d2 Fix a reference to the MRE book in re docs (GH-1113) by Berker Peksag · 6 years ago
  4. a445feb bpo-30688: Support \N{name} escapes in re patterns. (GH-5588) by Serhiy Storchaka · 6 years ago
  5. 6677142 bpo-32614: Modify re examples to use a raw string to prevent warning (GH-5265) by Cheryl Sabella · 6 years ago
  6. fbb490f bpo-32308: Replace empty matches adjacent to a previous non-empty match in re.sub(). (#4846) by Serhiy Storchaka · 7 years ago
  7. 70d56fb bpo-25054, bpo-1647489: Added support of splitting on zerowidth patterns. (#4471) by Serhiy Storchaka · 7 years ago
  8. c615be5 Use raw strings in the re module examples. (#4616) by Serhiy Storchaka · 7 years ago
  9. 05cb728 bpo-30349: Raise FutureWarning for nested sets and set operations (#1553) by Serhiy Storchaka · 7 years ago
  10. b0b44b4 bpo-15606: Improve the re.VERBOSE documentation. (#4366) by Serhiy Storchaka · 7 years ago
  11. 3557b05 bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags for RE. (#3885) by Serhiy Storchaka · 7 years ago
  12. cd195e2 bpo-31714: Improved regular expression documentation. (#3907) by Serhiy Storchaka · 7 years ago
  13. 0b5e61d bpo-30397: Add re.Pattern and re.Match. (#1646) by Serhiy Storchaka · 7 years ago
  14. ed94a8b bpo-26656: Improve re.compile documentation (GH-3211) by Henk-Jaap Wagenaar · 7 years ago
  15. 12d6b5d bpo-30398: Add a docstring for re.error. (#1647) by Serhiy Storchaka · 7 years ago
  16. c9d6dbc Added effect of re.ASCII and reworded slightly (#1782) by Brian Ward · 7 years ago
  17. 898ff03 bpo-30215: Make re.compile() locale agnostic. (#1361) by Serhiy Storchaka · 7 years ago
  18. fdbd011 bpo-10076: Compiled regular expression and match objects now are copyable. (#1000) by Serhiy Storchaka · 7 years ago
  19. 5908300 bpo-29995: re.escape() now escapes only special characters. (#1007) by Serhiy Storchaka · 7 years ago
  20. 8fc7bc2 bpo-30021: Add examples for re.escape(). (#1048) by Serhiy Storchaka · 7 years ago
  21. ed6795e bpo-22594: Add a link to the regex module in re documentation (GH-241) by Marco Buttu · 7 years ago
  22. 0fa4746 merge by Raymond Hettinger · 7 years ago
  23. d0b9158 Substitute a more readable f-string by Raymond Hettinger · 7 years ago
  24. 186b204 Fix typos in comment and documentation by Martin Panter · 8 years ago
  25. ff3dbe9 Merge documentation for issue #27030 from 3.6. by Serhiy Storchaka · 8 years ago
  26. 53c53ea Issue #27030: Unknown escapes in re.sub() replacement template are allowed by Serhiy Storchaka · 8 years ago
  27. c88c80b closes issue28082: doc update and NEWS entry by Ethan Furman · 8 years ago
  28. 479eb76 Issue #27800: Merge RE repetition doc from 3.5 into 3.6 by Martin Panter · 8 years ago
  29. 684340e Issue #27800: Document limitation and workaround for multiple RE repetitions by Martin Panter · 8 years ago
  30. 605bdae Issue 24454: Improve the usability of the re match object named group API by Eric V. Smith · 8 years ago
  31. bd48d27 Issue #22493: Inline flags now should be used only at the start of the by Serhiy Storchaka · 8 years ago
  32. c307672 We're not that far in the future yet by Zachary Ware · 8 years ago
  33. f46e612 repair versionadded directive by Benjamin Peterson · 8 years ago
  34. be9a4e5 Issue #433028: Added support of modifier spans in regular expressions. by Serhiy Storchaka · 8 years ago
  35. dccc5ed Issue #27327: fix doc typo, noted by Jakub Wilk. by Ned Deily · 8 years ago
  36. 98e9051 Add grammatical article to “an ASCII letter” by Martin Panter · 8 years ago
  37. 4da945f Merge Issue #22558. by Terry Jan Reedy · 8 years ago
  38. fa089b9 Issue #22558: Add remaining doc links to source code for Python-coded modules. by Terry Jan Reedy · 8 years ago
  39. 9bd85b8 Issue #27030: Unknown escapes consisting of ``'\'`` and ASCII letter in by Serhiy Storchaka · 8 years ago
  40. 84f387d Issue #21593: Clarify that re.search() returns the first match by Berker Peksag · 8 years ago
  41. dba9039 Issue #23921: Standardized documentation whitespace formatting. by Serhiy Storchaka · 8 years ago
  42. 6245cb3 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 8 years ago
  43. 7ff033b Clarify greedy-qualifier example, avoid HTML. by Georg Brandl · 8 years ago
  44. 5d94134 Closes #25910: fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch. by Georg Brandl · 8 years ago
  45. 8c16cb9 Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. by Georg Brandl · 8 years ago
  46. a99ab63 Merge with 3.4 by Zachary Ware · 9 years ago
  47. 71a0b43 Rewrite re.VERBOSE section. by Zachary Ware · 9 years ago
  48. a54aae0 Issue #23622: Unknown escapes in regular expressions that consist of ``'\'`` by Serhiy Storchaka · 9 years ago
  49. 4eea62f Issues #814253, #9179: Group references and conditional group references now by Serhiy Storchaka · 9 years ago
  50. 83e8027 Issue #22818: Splitting on a pattern that could match an empty string now by Serhiy Storchaka · 9 years ago
  51. 22a309a Issue #21032: Deprecated the use of re.LOCALE flag with str patterns or by Serhiy Storchaka · 10 years ago
  52. ad446d5 Issue #22578: Added attributes to the re.error class. by Serhiy Storchaka · 10 years ago
  53. 0235709 merge with 3.4 by Georg Brandl · 10 years ago
  54. bb2d669 Closes #22736: move seealso to the bottom of the section about RE syntax. by Georg Brandl · 10 years ago
  55. 7438e4b Issue 1519638: Now unmatched groups are replaced with empty strings in re.sub() by Serhiy Storchaka · 10 years ago
  56. c6f22cc Remove unused leftover stray line by Raymond Hettinger · 10 years ago
  57. c566431 Improve regex tokenizer example by using re.finditer(). by Raymond Hettinger · 10 years ago
  58. 8323f68 Issue 21977: Minor improvements to the regexes in the tokenizer example. by Raymond Hettinger · 10 years ago
  59. 642d4b6 #21690: fix a couple of links in the docs of the re module. Noticed by Julian Gilbey. by Ezio Melotti · 10 years ago
  60. a3369a5 Issues #814253, #9179: Warnings now are raised when group references and by Serhiy Storchaka · 9 years ago
  61. 0edb5c1 Issue #21593: (from StackOverflow) minor doc clarification for re.search. by Terry Jan Reedy · 10 years ago
  62. 2a61452 Removed spaces before commas and periods. by Serhiy Storchaka · 11 years ago
  63. a4d170d Removed spaces before commas and periods. by Serhiy Storchaka · 11 years ago
  64. 475546f Fixed regex match representation in an example. by Serhiy Storchaka · 11 years ago
  65. 32eddc1 Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, by Serhiy Storchaka · 11 years ago
  66. 7571941 #19639: update the repr of the match objects in the docs. Patch by Claudiu Popa. by Ezio Melotti · 11 years ago
  67. daa1fa9 Back out accidentally pushed changeset b51218966201. by Georg Brandl · 11 years ago
  68. 4300019 Add re.fullmatch() function and regex.fullmatch() method, which anchor the by Georg Brandl · 11 years ago
  69. 2070e83 Fix example in backreference description. Found by Alexander Heger on docs@. by Georg Brandl · 11 years ago
  70. 3c6780c6 Closes #15956: improve documentation of named groups and how to reference them. by Georg Brandl · 11 years ago
  71. 7ce22d1 #16304: merge with 3.2. by Ezio Melotti · 12 years ago
  72. b87f82f #16304: clarify match objects docs. Initial patch by Jan Duzinkiewicz. by Ezio Melotti · 12 years ago
  73. 463badf Issue #3665: \u and \U escapes are now supported in unicode regular expressions. by Antoine Pitrou · 12 years ago
  74. 5fe0f4e #14519: merge with 3.2. by Ezio Melotti · 12 years ago
  75. a0b1d1e #14519: fix the regex used in the scanf example. by Ezio Melotti · 12 years ago
  76. 0ce1649 #14461: merge with 3.2. by Ezio Melotti · 12 years ago
  77. 0a6b541 #14461: fix wording. by Ezio Melotti · 12 years ago
  78. e240947 #14155: merge note about \b from 3.2. by Ezio Melotti · 12 years ago
  79. 285e51b #14155: add a note about \b. by Ezio Melotti · 12 years ago
  80. 869ac78 merge with 3.2 by Georg Brandl · 12 years ago
  81. 3a19e54 Closes #14250: regex.flags has not only explicit flags but also implicit flags and those from the pattern by Georg Brandl · 12 years ago
  82. 9758fcf merge with 3.2 by Georg Brandl · 12 years ago
  83. 557a3ec Closes #14343: avoid shadowing builtin input() in example code. by Georg Brandl · 12 years ago
  84. 5ec6fdb Closes #14342: remove out-of-date section about avoiding recursion errors. by Georg Brandl · 12 years ago
  85. 5cd2767 #14283: merge with 3.2 by Georg Brandl · 12 years ago
  86. 69c7a69 Closes #14283: match() and search() are regex methods, not match methods. by Georg Brandl · 12 years ago
  87. 6ea00ef #14155: merge with 3.2. by Ezio Melotti · 12 years ago
  88. 443f000 #14155: remove duplication about search vs match in re doc. by Ezio Melotti · 12 years ago
  89. 0b8123d #10713: merge with 3.2. by Ezio Melotti · 12 years ago
  90. 5a045b9 #10713: Improve documentation for \b and \B and add a few tests. Initial patch and tests by Martin Pool. by Ezio Melotti · 12 years ago
  91. da785fd Issue #13690: add re.DEBUG; patch by Filip Gruszczyński by Sandro Tosi · 13 years ago
  92. 245537a merge with 3.2 by Sandro Tosi · 13 years ago
  93. 9987d93 #13613: merge with 3.2. by Ezio Melotti · 13 years ago
  94. e5b2ac8 #13613: fix example in re doc. by Ezio Melotti · 13 years ago
  95. 2760729 #13219: merge with 3.2. by Ezio Melotti · 13 years ago
  96. 81231d9 #13219: clarify section about character sets in the re documentation. by Ezio Melotti · 13 years ago
  97. eeb905b Merge by Raymond Hettinger · 13 years ago
  98. 5768e0c Issue 11931: Minor punctuation/grammar/wording fixups to the regex docs by Raymond Hettinger · 13 years ago
  99. 5f4ea28 merge with 3.2 by Sandro Tosi · 13 years ago
  100. 6a633bb fix description of \r; thanks to Thomas Waldmann from docs@ by Sandro Tosi · 13 years ago