1. bb0424b bpo-40275: Use new test.support helper submodules in tests (GH-21451) by Hai Shi · 5 years ago
  2. 8aea4b3 bpo-40148: Add PurePath.with_stem() (GH-19295) by Tim Hoffmann · 5 years ago
  3. 00002e6 bpo-39682: make `pathlib.Path` immutable by removing (undocumented) support for "closing" a path by using it as a context manager (GH-18846) by Barney Gale · 5 years ago
  4. eb7560a bpo-38894: Fix pathlib.Path.glob in the presence of symlinks and insufficient permissions (GH-18815) by Pablo Galindo · 6 years ago
  5. c45a2aa bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windows (GH-17961) by Christoph Reiter · 6 years ago
  6. 092435e bpo-38811: Check for presence of os.link method in pathlib (GH-17225) by Toke Høiland-Jørgensen · 6 years ago
  7. 526606b bpo-38994: Implement __class_getitem__ for PathLike (GH-17498) by Batuhan Taşkaya · 6 years ago
  8. 59c8088 Revert "bpo-38811: Check for presence of os.link method in pathlib. (GH-17170)" (#17219) by Victor Stinner · 6 years ago
  9. 111772f bpo-38811: Check for presence of os.link method in pathlib. (GH-17170) by Toke Høiland-Jørgensen · 6 years ago
  10. a01ba33 bpo-30618: add readlink to pathlib.Path (GH-8285) by Girts · 6 years ago
  11. 10ecbad bpo-31202: Preserve case of literal parts in Path.glob() on Windows. (GH-16860) by Serhiy Storchaka · 6 years ago
  12. f9dc2ad bpo-37935: Added tests for os.walk(), glob.iglob() and Path.glob() (GH-15956) by Serhiy Storchaka · 6 years ago
  13. 088a09a bpo-31163: Added return values to pathlib.Path instance's rename and replace methods. (GH-13582) by hui shang · 6 years ago
  14. 97d7906 bpo-38087: Fix case sensitivity in test_pathlib and test_ntpath (GH-15850) by Steve Dower · 6 years ago
  15. 82642a0 bpo-37689: add Path.is_relative_to() method (GH-14982) by Hai Shi · 6 years ago
  16. 4c69be2 bpo-34775: Return NotImplemented in PurePath division. (GH-9509) by aiudirog · 6 years ago
  17. d5c120f bpo-36035: fix Path.rglob for broken links (GH-11988) by Jörg Stucke · 6 years ago
  18. d9e006b bpo-33123: pathlib: Add missing_ok parameter to Path.unlink (GH-6191) by ‮zlohhcuB treboR · 6 years ago
  19. 6b5b013 bpo-26978: Implement pathlib.Path.link_to (Using os.link) (GH-12990) by Joannah Nanjekye · 6 years ago
  20. 83da926 bpo-35488: Add tests for ** glob matching in pathlib (GH-11171) by Anthony Shaw · 7 years ago
  21. 0cd6391 bpo-34977: Add Windows App Store package (GH-11027) by Steve Dower · 7 years ago
  22. cb0b78a Revert "bpo-34977: Add Windows App Store package (GH-10245)" (GH-11019) by Victor Stinner · 7 years ago
  23. 468a15a bpo-34977: Add Windows App Store package (GH-10245) by Steve Dower · 7 years ago
  24. 0185f34 bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant to invalid paths. (#7695) by Serhiy Storchaka · 7 years ago
  25. 216b745 bpo-33635: Handling Bad file descriptor in Path.is_file and related. (GH-8542) by Przemysław Spodymek · 7 years ago
  26. 423d05f bpo-34333: Fix %-formatting in Path.with_suffix() (GH-8663) by Berker Peksag · 7 years ago
  27. e5f41d2 bpo-33522: Enable CI builds on Visual Studio Team Services (#6865) by Steve Dower · 7 years ago
  28. 5c0d462 bpo-32601: Let test_expanduser use the same user if no others found. (GH-5246) by Anders Kaseorg · 7 years ago
  29. b21d155 bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930) by Serhiy Storchaka · 8 years ago
  30. 92c2ca7 bpo-28759: Skip some tests on PermissionError raised by Android (GH-4350) by xdegaye · 8 years ago
  31. 173ff4a bpo-30897: Add is_mount() to pathlib.Path (#2669) by Cooper Lees · 8 years ago
  32. add98eb bpo-30177: pathlib: include the full path in resolve(strict=False) (#1893) by Antoine Pietri · 8 years ago
  33. 2e576f5 bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) by Serhiy Storchaka · 8 years ago
  34. 22a594a bpo-29694: race condition in pathlib mkdir with flags parents=True (GH-1089) by Armin Rigo · 8 years ago
  35. ec1f5df bpo-19791: Use functions from test support to check the symlink support. (GH-822) by Vajrasky Kok · 8 years ago
  36. af7b9ec bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True) (#805) by Serhiy Storchaka · 8 years ago
  37. 1add96f Issue #29416: Prevent infinite loop in pathlib.Path.mkdir by Steve Dower · 9 years ago
  38. d3c4853 Issue #29416: Prevent infinite loop in pathlib.Path.mkdir by Steve Dower · 9 years ago
  39. e88ed05 Issue #28683: Fix the tests that bind() a unix socket and raise PermissionError by Xavier de Gaye · 9 years ago
  40. 3a4e989 Issue #28759: Fix the tests that fail with PermissionError when run as by Xavier de Gaye · 9 years ago
  41. fb24eea Issue #26856: Fix the tests assuming that the pwd module has getpwall() and by Xavier de Gaye · 9 years ago
  42. 98eb360 Issue #19717: Makes Path.resolve() succeed on paths that do not exist (patch by Vajrasky Kok) by Steve Dower · 9 years ago
  43. 568be63 Issue #27186: Add os.PathLike support to pathlib. by Brett Cannon · 9 years ago
  44. 03e6061 Back out pathlib.Path.path attr. (Merge 3.5->3.6) by Guido van Rossum · 9 years ago
  45. 387e6e3 Back out pathlib.Path.path attr. (Merge 3.4->3.5) by Guido van Rossum · 9 years ago
  46. 3d4d01f Back out 7e9605697dfc, 2e3c31ab586a, 759b2cecc289. by Guido van Rossum · 9 years ago
  47. 0e12052 Issue #24950: Fixed expanduser tests when the users home directory in pwd is "/". by Serhiy Storchaka · 9 years ago
  48. a3fd0b2 Issue #24950: Fixed expanduser tests when the users home directory in pwd is "/". by Serhiy Storchaka · 9 years ago
  49. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 9 years ago
  50. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 9 years ago
  51. 25caed5 Merge 3.5 by Victor Stinner · 10 years ago
  52. d756963 Issue #20589: Fix test_pathlib by Victor Stinner · 10 years ago
  53. d0e9b69 Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise by Berker Peksag · 10 years ago
  54. 04d4229 Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise by Berker Peksag · 10 years ago
  55. 396cbd6 Issue #23076: Path.glob() now raises a ValueError if it's called with an by Berker Peksag · 10 years ago
  56. 4a208e4 Issue #23076: Path.glob() now raises a ValueError if it's called with an by Berker Peksag · 10 years ago
  57. 2900995 Hopeful fix for test_rglob_common on Windows without symlinks. (Merge 3.5->3.6) by Guido van Rossum · 10 years ago
  58. 03abf6d Hopeful fix for test_rglob_common on Windows without symlinks. (Merge 3.4->3.5) by Guido van Rossum · 10 years ago
  59. 9c39b67 Hopeful fix for test_rglob_common on Windows without symlinks. by Guido van Rossum · 10 years ago
  60. 8355bd7 Add another try/except PermissionError to avoid depending on listdir order. Fix issues #24120 and #26012. (Merge 3.5->3.6) by Guido van Rossum · 10 years ago
  61. c3a8272 Add another try/except PermissionError to avoid depending on listdir order. Fix issues #24120 and #26012. (Merge 3.4->3.5) by Guido van Rossum · 10 years ago
  62. bc9fdda Add another try/except PermissionError to avoid depending on listdir order. Fix issues #24120 and #26012. by Guido van Rossum · 10 years ago
  63. 483397a Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.5->3.6) by Guido van Rossum · 10 years ago
  64. 1a4afec Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.4->3.5) by Guido van Rossum · 10 years ago
  65. e428231 Issue #22570: Add 'path' attribute to pathlib.Path objects. by Guido van Rossum · 10 years ago
  66. e630b68 Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob(). (Merge 3.5->3.6) by Guido van Rossum · 10 years ago
  67. 520f297 Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob(). (Merge 3.4->3.5) by Guido van Rossum · 10 years ago
  68. 69bfb15 Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob(). by Guido van Rossum · 10 years ago
  69. 080169c Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. (Merge 3.5->3.6) by Guido van Rossum · 10 years ago
  70. d54377d Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. (Merge 3.4->3.5) by Guido van Rossum · 10 years ago
  71. 6c2d33a Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. by Guido van Rossum · 10 years ago
  72. ac1e7f6 Remove duplicate method in test_pathlib. Initial patch by Navneet Suman. by Ezio Melotti · 10 years ago
  73. 2d07b85 Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib. by Antoine Pitrou · 11 years ago
  74. 57fffd6 Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib. by Antoine Pitrou · 11 years ago
  75. 17cba7d Issue #19777: Provide a home() classmethod on Path objects. by Antoine Pitrou · 11 years ago
  76. e969439 Issue #19776: Fix test_pathlib.test_expanduser() by Victor Stinner · 11 years ago
  77. 8477ed6 Issue #19776: Add a expanduser() method on Path objects. by Antoine Pitrou · 11 years ago
  78. c689101 Issue #22759: Query methods on pathlib.Path() (exists(), is_dir(), etc.) now return False when the underlying stat call raises NotADirectoryError. by Antoine Pitrou · 11 years ago
  79. 2b2852b Issue #22759: Query methods on pathlib.Path() (exists(), is_dir(), etc.) now return False when the underlying stat call raises NotADirectoryError. by Antoine Pitrou · 11 years ago
  80. ea68398 Closes #20218: Added convenience methods read_text/write_text and read_bytes/ by Georg Brandl · 11 years ago
  81. 7c549c4 - Issue #21539: Add a *exists_ok* argument to `Pathlib.mkdir()` to mimic by Barry Warsaw · 11 years ago
  82. 963b4ba Merge Python 3.4 by Victor Stinner · 11 years ago
  83. ec86469 Issue #19811, #22022: test_pathlib uses support.rmtree() instead of by Victor Stinner · 11 years ago
  84. 006c725 Merge pathlib fixes by Antoine Pitrou · 11 years ago
  85. e50dafc Issue #20639: calling Path.with_suffix('') allows removing the suffix again. by Antoine Pitrou · 11 years ago
  86. 7084e73 Issue #21714: Disallow the construction of invalid paths using Path.with_name(). Original patch by Antony Lee. by Antoine Pitrou · 11 years ago
  87. 43e3d94 Issue #19775: Add a samefile() method to pathlib Path objects. by Antoine Pitrou · 11 years ago
  88. cb5ec77 Issue #21127: Path objects can now be instantiated from str subclass instances (such as numpy.str_). by Antoine Pitrou · 11 years ago
  89. b599c61 Fix the unittest to run properly when the working directory has by Gregory P. Smith · 12 years ago
  90. 8f8ec92 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 12 years ago
  91. 1b02da9 Issue #20111: pathlib.Path.with_suffix() now sanity checks the given suffix. by Antoine Pitrou · 12 years ago
  92. 156b361 Issue #19918: Fix PurePath.relative_to() under Windows. by Antoine Pitrou · 12 years ago
  93. 0048c98 Issue #19921: When Path.mkdir() is called with parents=True, any missing parent is created with the default permissions, ignoring the mode argument (mimicking the POSIX "mkdir -p" command). by Antoine Pitrou · 12 years ago
  94. c274fd2 Issue #19887: Improve the Path.resolve() algorithm to support certain symlink chains. by Antoine Pitrou · 12 years ago
  95. 010ff58 Test same drive in different cases (issue #19908). by Serhiy Storchaka · 12 years ago
  96. a993902 Issue #19908: pathlib now joins relative Windows paths correctly when a drive by Serhiy Storchaka · 12 years ago
  97. cc15751 Issue #19877: fix regression in test_pathlib when Windows has symlink support available (i.e. in administrator mode). by Antoine Pitrou · 12 years ago
  98. 51af82c Add a test for complex symlinks. by Antoine Pitrou · 12 years ago
  99. 2cf4b0f Issue #19742: fix a test_pathlib failure when a file owner or group isn't in the system database by Antoine Pitrou · 12 years ago
  100. 2cf3917 Issue #19715: try the utime(..., None) approach again, now that it should be more precise under Windows by Antoine Pitrou · 12 years ago