Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 587 Bytes

CHANGES.rst

File metadata and controls

25 lines (18 loc) · 587 Bytes

Changes

3.0

  • Minimum Python version is now 2.5.

2.6

  • Issue #5: Implemented path.tempdir, which returns a path object which is a temporary directory and context manager for cleaning up the directory.

  • Issue #12: One can now construct path objects from a list of strings by simply using path.joinpath. For example:

    path.joinpath('a', 'b', 'c') # or
    path.joinpath(*path_elements)
    

2.5

  • Issue #7: Add the ability to do chaining of operations that formerly only returned None.
  • Issue #4: Raise a TypeError when constructed from None.