Skip to content

Commit

Permalink
softspace is no more (#151)
Browse files Browse the repository at this point in the history
* `softspace` is no more

See python/cpython#18599

* Update README.rst
  • Loading branch information
sobolevn committed Nov 5, 2022
1 parent ab9ed37 commit 6193d83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ History
``````
* Added ``aiofiles.os.access``.
`#146 <https://github.com/Tinche/aiofiles/pull/146>`_
* Removed ``aiofiles.tempfile.temptypes.AsyncSpooledTemporaryFile.softspace``.
`#151 <https://github.com/Tinche/aiofiles/pull/151>`_

22.1.0 (2022-09-04)
```````````````````
Expand Down
2 changes: 1 addition & 1 deletion src/aiofiles/tempfile/temptypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"tell",
"truncate",
)
@proxy_property_directly("closed", "encoding", "mode", "name", "newlines", "softspace")
@proxy_property_directly("closed", "encoding", "mode", "name", "newlines")
class AsyncSpooledTemporaryFile(AsyncBase):
"""Async wrapper for SpooledTemporaryFile class"""

Expand Down

0 comments on commit 6193d83

Please sign in to comment.