Berker Peksag
e0b5b2096e
bpo-34384: Fix os.readlink() on Windows (GH-8740)
...
os.readlink() now accepts path-like and bytes objects on Windows.
Previously, support for path-like and bytes objects was only
implemented on Unix.
This commit also merges Unix and Windows implementations of
os.readlink() in one function and adds basic unit tests to increase
test coverage of the function.
2018-08-15 13:03:41 +03:00
Zackery Spytz
7c4ab2afb1
closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439)
...
Avoid undefined pointer arithmetic with NULL.
2018-08-14 23:27:26 -07:00
Christian Heimes
88bfd0bce0
bpo-34399: 2048 bits RSA keys and DH params ( #8762 )
...
Downstream vendors have started to deprecate weak keys. Update all RSA keys
and DH params to use at least 2048 bits.
Finite field DH param file use RFC 7919 values, generated with
certtool --get-dh-params --sec-param=high
Signed-off-by: Christian Heimes <christian@python.org>
2018-08-14 12:54:19 +02:00
Benjamin Peterson
aa4e4a40db
Make regular expressions in test_tasks.py raw strings. (GH-8759)
...
Follow up to bpo-34270.
Fixes:
```
Lib/test/test_asyncio/test_tasks.py:330: DeprecationWarning: invalid escape sequence \d
match1 = re.match("^<Task pending name='Task-(\d+)'", repr(t1))
Lib/test/test_asyncio/test_tasks.py:332: DeprecationWarning: invalid escape sequence \d
match2 = re.match("^<Task pending name='Task-(\d+)'", repr(t2))
```
2018-08-13 21:32:30 -07:00
Ville Skyttä
da12063f2f
smtplib documentation fixes (GH-8708)
...
* SMTP.startssl: Fix doc on keyfile and certfile use
* SMTP.startssl: Add missing keyfile and certfile deprecation notice
* SMTP: Doc grammar fixes
2018-08-12 20:39:19 -07:00
Rémy HUBSCHER
10b59f1b01
Fix misindented yaml in logging how to example (GH-8604)
2018-08-12 16:58:26 -07:00
Raymond Hettinger
a47f394af8
Minor code clean-up. Don't alter the input vector. Use variables instead. GH-8748
2018-08-12 14:18:56 -07:00
Raymond Hettinger
00414597b4
Add more tests and assertions for math.hypot() and math.dist() (GH-8747)
2018-08-12 12:15:23 -07:00
Vadim Pushtaev
4d12e4dc28
bpo-34213: Allow dataclasses to work with a field named 'object'. (GH-8452)
2018-08-12 07:46:05 -04:00
Andrés Delfino
65b5ef02ec
Fix the versionadded indentation in exec_module doc (GH-8719)
2018-08-11 23:50:46 -07:00
Raymond Hettinger
c630e10440
Factor-out common code. Also, optimize common cases by preallocating space on the stack. GH-8738
...
Improves speed by 9 to 10ns per call.
2018-08-11 18:39:05 -07:00
Raymond Hettinger
1399074535
Replace straight addition with Kahan summation and move max to the end (GH-8727)
2018-08-11 11:26:36 -07:00
Sergey Fedoseev
2fc46979b8
bpo-34151: Improve performance of some list operations (GH-8332)
2018-08-11 21:12:07 +08:00
Evan Allrich
9e84084851
bpo-34379: Doc: Move note for json.dump (GH-8730)
2018-08-11 16:34:02 +09:00
Paul Price
db6075ab3a
closes bpo-34377: Update Valgrind suppressions. (GH-8729)
...
Valgrind isn't seeing PyObject_Free/PyObject_Realloc, but using _PyObject_Free/_PyObject_Realloc works.
2018-08-10 23:41:34 -07:00
Berker Peksag
c8b0dbc492
bpo-26818: Add a test to make sure the bug is fixed (GH-8664)
...
The main cause of this bug was fixed as part of bpo-31908.
2018-08-11 09:15:43 +03:00
Berker Peksag
84a13fbda0
bpo-9372: Deprecate several __getitem__ methods (GH-8609)
...
The __getitem__ methods of DOMEventStream, FileInput,
and FileWrapper classes ignore their 'index' parameters
and return the next item instead.
2018-08-11 09:05:04 +03:00
Berker Peksag
423d05f6f5
bpo-34333: Fix %-formatting in Path.with_suffix() (GH-8663)
2018-08-11 08:45:06 +03:00
Tal Einat
077059e0f0
bpo-34047: IDLE: fix mousewheel scrolling direction on macOS (GH-8678)
2018-08-10 09:02:08 +03:00
GPery
b92c526ed5
closes bpo-34353: Add sockets to stat.filemode fallback python implementation. (GH-8703)
2018-08-09 22:12:08 -07:00
Alex Grönholm
a7548230ff
Fixed inconsistency in string handling in the Task C implementation (GH-8717)
2018-08-09 16:49:49 -04:00
Andriy Maletsky
22d131a7f9
Doc: add missing capture_output arg to subprocess.run() signature ( #8374 )
2018-08-09 13:01:54 -07:00
Andrés Delfino
cf2c5e8e28
Improve grammar of asynchronous iterator glossary entry (GH-8657)
2018-08-09 08:45:41 -07:00
Stéphane Wirtel
599bfa18f8
bpo-34324: Doc README wrong directory name for venv (GH-8650)
...
In the documentation, the `env` directory is specified when we execute
the `make venv` command. But in the code, `make venv` will create the
virtualenv inside the `venv` directory (defined by `VENVDIR`)
2018-08-09 08:05:31 -07:00
Alex Grönholm
cca4eec3c0
bpo-34270: Make it possible to name asyncio tasks (GH-8547)
...
Co-authored-by: Antti Haapala <antti.haapala@anttipatterns.com>
2018-08-08 17:06:47 -04:00
Benjamin Peterson
52dee687af
Assume the raw environ is always declared. (GH-8707)
...
posixmodule.c always declares environ, so don't bother catching a NameError in os.py.
2018-08-07 21:51:12 -07:00
Sergey Fedoseev
db8707c8ab
Make code examples in Functional Programming HOWTO to be PEP 8 compliant. (GH-8646)
2018-08-07 14:38:00 -07:00
Mikhail Terekhov
d2ac400267
bpo-34335: Use async/await syntax in documentation examples (GH-8674)
2018-08-07 13:29:06 -07:00
Steve Dower
b221c93d4c
VSTS: Skip build steps when only docs have changed (GH-8546)
2018-08-07 15:45:27 +01:00
Zackery Spytz
8b58468032
Remove unneeded PyErr_Clear() calls after PyErr_Print(). (GH-8699)
...
PyErr_Print() always clears the error indicator, so there is no need
to call PyErr_Clear() immediately afterwards.
2018-08-07 17:26:58 +03:00
Berker Peksag
e4dcbbd7f4
bpo-18540: Fix EAI_NONAME in imaplib.IMAP4*() (GH-8634)
2018-08-07 05:12:18 +03:00
Berker Peksag
3c1b590472
Fix HTML formatting in datamodel.rst (GH-8693)
2018-08-06 23:52:49 +03:00
Xtreak
5b2657fb8c
bpo-34319: Clarify file handler closure in pathlib.read_text (GH-8645)
...
Patch by Terry Jan Reedy.
2018-08-06 15:55:03 -04:00
Serhiy Storchaka
8f7bb100d0
bpo-34272: Move argument parsing tests from test_capi to test_getargs2. (GH-8567)
2018-08-06 16:50:19 +03:00
Terry Jan Reedy
28c7f8c8ce
bpo-34273: Change 'Fixed point' to 'Fixed-point notation'. ( #8673 )
...
* bpo-34273: Change 'Fixed point' to 'Fixed-point notation'.
The change in the mini language floating point and decimal table
is consistent with 'Exponential notation' and clarifies that we
are referring to the output notation, not an object type.
* Update string.rst
* Update string.rst
* Update string.rst
* Update string.rst
2018-08-06 08:41:17 -04:00
Anthony Sottile
b2499669ef
bpo-19891: Ignore error while writing history file (GH-8483)
2018-08-06 17:28:19 +09:00
Ville Skyttä
336c945858
bpo-34336: Don't promote possibility to leave out typing.Optional ( #8677 )
2018-08-05 17:38:04 +01:00
Tal Einat
87e59ac11e
bpo-33839: refactor IDLE's tooltips & calltips, add docstrings and tests (GH-7683)
...
* make CallTip and ToolTip sub-classes of a common abstract base class
* remove ListboxToolTip (unused and ugly)
* greatly increase test coverage
* tested on Windows, Linux and macOS
2018-08-05 09:21:08 +03:00
Berker Peksag
2e5566d9e7
Fix reST markup in unittest documentation (GH-8665)
2018-08-04 00:56:55 +03:00
Victor Stinner
d807862677
bpo-34170: Fix pymain_run_file() (GH-8660)
...
bpo-34170, bpo-34326: Fix pymain_run_file(): use
PyRun_AnyFileExFlags(closeit=1) instead of calling fclose(fp)
explicitly to close the input file before running the code.
2018-08-03 23:54:06 +02:00
Stefan Otte
46dc4e34ed
bpo-34329: Doc'd how to remove suffix of pathlib.Path() (GH-8655)
2018-08-03 23:49:42 +03:00
Victor Stinner
5a953fd0ab
bpo-34170: _PyCoreConfig_Read() don't replace coerce_c_locale (GH-8658)
...
If coerce_c_locale is already set (>= 0), use its value: don't
override it.
2018-08-03 22:49:07 +02:00
Marcel Plch
7b41dbad78
bpo-34325: Skip zipfile test for large timestamps when filesystem don't support them. (GH-8656)
...
When the filesystem doesn't support files with large timestamps,
skip testing that such files can be zipped.
2018-08-03 17:59:19 +02:00
Victor Stinner
caba55b3b7
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
...
sys_setcheckinterval() now uses a local variable to parse arguments,
before writing into interp->check_interval.
2018-08-03 15:33:52 +02:00
INADA Naoki
2ebd3813af
Fix docstring of Profiler class (GH-8651)
2018-08-03 18:09:57 +09:00
Andrés Delfino
b6efc2cf97
Improve the grammar in `range` documentation. (GH-8628)
...
Remove unnecessary "that" in the sentence.
2018-08-02 22:12:51 -07:00
Terry Jan Reedy
9beaef6225
bpo-34275: Make IDLE calltips always visible on Mac. (GH-8639)
...
Some MacOS-tk combinations need .update_idletasks().
The call is both unneeded and innocuous on Linux and Windows.
Patch by Kevin Waltzer.
2018-08-02 22:50:01 -04:00
Lysandros Nikolaou
bcd1d971b6
Update list.remove(x) documentation (GH-8636)
...
Rephrase it to "It raises a `ValueError`"
2018-08-02 19:45:48 -07:00
HiyashiChuka
46ebe61c7f
bpo-34317: Fix a dead url to Windows documentation (GH-8622)
2018-08-02 19:44:06 -07:00
Victor Stinner
5640d030e1
bpo-30317: Fix multiprocessing test_timeout() (GH-8621)
...
Multiprocessing test_timeout() now accepts a delta of 100 ms instead
of just 50 ms, since the test failed with 135.8 ms instead of the
expected 200 ms.
2018-08-03 01:09:00 +01:00