]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-33239: Fix default value of 'buffering' parameter in docs of tempfile.* functions...
authorSergey Fedoseev <fedoseev.sergey@gmail.com>
Sun, 13 Sep 2020 17:59:01 +0000 (22:59 +0500)
committerGitHub <noreply@github.com>
Sun, 13 Sep 2020 17:59:01 +0000 (10:59 -0700)
commitb48389d95093c3f912549add8da339edc164bf0d
treee0b53981e21778ceb8d1aee33f8a6fd815e1629f
parentc75330605d4795850ec74fdc4d69aa5d92f76c00
bpo-33239: Fix default value of 'buffering' parameter in docs of tempfile.* functions (GH-21763)

`None` doesn't work:

```python
>>> import tempfile
>>> tempfile.TemporaryFile(buffering=None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/sergey/tmp/cpython-dev/Lib/tempfile.py", line 607, in TemporaryFile
    return _io.open(fd, mode, buffering=buffering,
TypeError: 'NoneType' object cannot be interpreted as an integer
```

Automerge-Triggered-By: @vsajip
Doc/library/tempfile.rst