-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- **Breaking**: Combined all classes' functionality into a single `InPlace` class that uses a `mode` argument to determine whether to operate in text or binary mode. - `InPlaceBytes` and `InPlaceText` are now deprecated and will be removed in a future version; please use `InPlace` with `mode='b'` or `mode='t'` instead. - Support fsencoded-bytes as file paths under Python 3
- Loading branch information
Showing
3 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
Visit <https://github.com/jwodder/inplace> for more information. | ||
""" | ||
|
||
__version__ = '0.4.0.dev1' | ||
__version__ = '0.4.0' | ||
__author__ = 'John Thorvald Wodder II' | ||
__author_email__ = '[email protected]' | ||
__license__ = 'MIT' | ||
|