1. 173ff4a bpo-30897: Add is_mount() to pathlib.Path (#2669) by Cooper Lees · 7 years ago
  2. add98eb bpo-30177: pathlib: include the full path in resolve(strict=False) (#1893) by Antoine Pietri · 7 years ago
  3. 3972628 bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489) by Jon Dufresne · 7 years ago
  4. 2e576f5 bpo-30144: Import collections ABC from collections.abc rather than collections. (#1263) by Serhiy Storchaka · 7 years ago
  5. 22a594a bpo-29694: race condition in pathlib mkdir with flags parents=True (GH-1089) by Armin Rigo · 7 years ago
  6. d6debb2 bpo-29919: Remove unused imports found by pyflakes (#137) by Victor Stinner · 7 years ago
  7. 62a9951 bpo-29900: Simplify pathlib implementation. (#814) by Serhiy Storchaka · 7 years ago
  8. af7b9ec bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True) (#805) by Serhiy Storchaka · 7 years ago
  9. 1add96f Issue #29416: Prevent infinite loop in pathlib.Path.mkdir by Steve Dower · 8 years ago
  10. d3c4853 Issue #29416: Prevent infinite loop in pathlib.Path.mkdir by Steve Dower · 8 years ago
  11. 4b1e98b Issue #29079: Prevent infinite loop in pathlib.resolve() on Windows by Steve Dower · 8 years ago
  12. 98eb360 Issue #19717: Makes Path.resolve() succeed on paths that do not exist (patch by Vajrasky Kok) by Steve Dower · 8 years ago
  13. 680cb15 Issue #26032: Optimized globbing in pathlib by using os.scandir(); it is now by Serhiy Storchaka · 8 years ago
  14. 568be63 Issue #27186: Add os.PathLike support to pathlib. by Brett Cannon · 8 years ago
  15. e26da7c Issue #27171: Fix typos in documentation, comments, and test function names by Martin Panter · 8 years ago
  16. 387e6e3 Back out pathlib.Path.path attr. (Merge 3.4->3.5) by Guido van Rossum · 8 years ago
  17. 3d4d01f Back out 7e9605697dfc, 2e3c31ab586a, 759b2cecc289. by Guido van Rossum · 8 years ago
  18. bc9fdda Add another try/except PermissionError to avoid depending on listdir order. Fix issues #24120 and #26012. by Guido van Rossum · 9 years ago
  19. e428231 Issue #22570: Add 'path' attribute to pathlib.Path objects. by Guido van Rossum · 9 years ago
  20. 69bfb15 Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob(). by Guido van Rossum · 9 years ago
  21. 6c2d33a Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. by Guido van Rossum · 9 years ago
  22. 57fffd6 Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib. by Antoine Pitrou · 9 years ago
  23. f4b7a02 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 10 years ago
  24. db118f5 Close #22370: Windows detection in pathlib is now more robust. by Antoine Pitrou · 10 years ago
  25. 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 · 10 years ago
  26. e50dafc Issue #20639: calling Path.with_suffix('') allows removing the suffix again. by Antoine Pitrou · 10 years ago
  27. 7084e73 Issue #21714: Disallow the construction of invalid paths using Path.with_name(). Original patch by Antony Lee. by Antoine Pitrou · 10 years ago
  28. cb5ec77 Issue #21127: Path objects can now be instantiated from str subclass instances (such as numpy.str_). by Antoine Pitrou · 10 years ago
  29. 1b02da9 Issue #20111: pathlib.Path.with_suffix() now sanity checks the given suffix. by Antoine Pitrou · 11 years ago
  30. 156b361 Issue #19918: Fix PurePath.relative_to() under Windows. by Antoine Pitrou · 11 years ago
  31. 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 · 11 years ago
  32. c274fd2 Issue #19887: Improve the Path.resolve() algorithm to support certain symlink chains. by Antoine Pitrou · 11 years ago
  33. a993902 Issue #19908: pathlib now joins relative Windows paths correctly when a drive by Serhiy Storchaka · 11 years ago
  34. 069a5e1 Issue #19872: remove unused imports in pathlib. Patch by Vajrasky Kok. by Antoine Pitrou · 11 years ago
  35. 4a60d42 Issue #19852: move Path._raw_open() around, as it is now a private method. by Antoine Pitrou · 11 years ago
  36. 2cf3917 Issue #19715: try the utime(..., None) approach again, now that it should be more precise under Windows by Antoine Pitrou · 11 years ago
  37. 12820c0 Revert utime(..., None) strategy (it has too poor resolution under Windows) and restore the previous test workaround by Antoine Pitrou · 11 years ago
  38. c3055be Trying other strategy for #19715: use utime(..., None) by Antoine Pitrou · 11 years ago
  39. 0325a21 Fix whitespace by Antoine Pitrou · 11 years ago
  40. 31119e4 Issue #19673: Add pathlib to the stdlib as a provisional module (PEP 428). by Antoine Pitrou · 11 years ago
  41. 04d4229 Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise by Berker Peksag · 8 years ago
  42. 4a208e4 Issue #23076: Path.glob() now raises a ValueError if it's called with an by Berker Peksag · 9 years ago
  43. 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 · 9 years ago
  44. 1a4afec Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.4->3.5) by Guido van Rossum · 9 years ago
  45. 520f297 Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob(). (Merge 3.4->3.5) by Guido van Rossum · 9 years ago
  46. d54377d Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. (Merge 3.4->3.5) by Guido van Rossum · 9 years ago
  47. 05492b8 Issue #25417: Remove the extra dot from docstring by Berker Peksag · 9 years ago
  48. 267597f Issue #25417: Fix typo in Path.samefile() docstring by Berker Peksag · 9 years ago
  49. 2d07b85 Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib. by Antoine Pitrou · 9 years ago
  50. 34af502 Issue #21408: The default __ne__() now returns NotImplemented if __eq__() by Serhiy Storchaka · 10 years ago
  51. 17cba7d Issue #19777: Provide a home() classmethod on Path objects. by Antoine Pitrou · 10 years ago
  52. 5d4e27e whitespace by Antoine Pitrou · 10 years ago
  53. 8477ed6 Issue #19776: Add a expanduser() method on Path objects. by Antoine Pitrou · 10 years ago
  54. 1d922d0 Close #22370: Windows detection in pathlib is now more robust. by Antoine Pitrou · 10 years ago
  55. 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 · 10 years ago
  56. ea68398 Closes #20218: Added convenience methods read_text/write_text and read_bytes/ by Georg Brandl · 10 years ago
  57. 7c549c4 - Issue #21539: Add a *exists_ok* argument to `Pathlib.mkdir()` to mimic by Barry Warsaw · 10 years ago
  58. 006c725 Merge pathlib fixes by Antoine Pitrou · 10 years ago
  59. 43e3d94 Issue #19775: Add a samefile() method to pathlib Path objects. by Antoine Pitrou · 10 years ago