summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* bpo-33537: Add an __all__ to importlib.resources (#6920)Barry Warsaw2018-05-171-8/+20
|
* bpo-19950: Clarify unittest TestCase instance use. (GH-6875)Gregory P. Smith2018-05-171-9/+15
|
* bpo-32604: Implement force-closing channels. (gh-6937)Eric Snow2018-05-172-25/+232
| | | This will make it easier to clean up channels (e.g. when used in tests).
* Update Python Folder.icns icon file to match new macOS look (GH-1780)Thomas Jones2018-05-171-0/+0
| | | Patch by Thomas Jones.
* bpo-33549: Remove shim and deprecation warning to access DocumentLS.async. ↵Matthias Bussonnier2018-05-172-32/+0
| | | | | | (GH-6924) `obj.async` is now a syntax error, so the warning/shim is quasi-unnecessary.
* bpo-33518: Add PEP entry to documentation glossary (GH-6860)Andrés Delfino2018-05-171-0/+15
|
* bpo-13631: Fix the order of initialization for readline libedit on macOS. ↵Zvezdan Petkovic2018-05-175-8/+23
| | | | | | (GH-6915) The editline emulation needs to be initialized *after* the name is defined. This fixes the long open issue.
* bpo-33475: Fix and improve converting annotations to strings. (GH-6774)Serhiy Storchaka2018-05-175-603/+358
|
* Replace _PyGC_REFS macros with higher level macros (GH-6852)INADA Naoki2018-05-172-7/+4
| | | | Only gcmodule.c uses _PyGC_REFS* macros now. This makes easy to read GC code.
* bpo-33522: Enable CI builds on Visual Studio Team Services (#6865)Steve Dower2018-05-1622-25/+603
|
* bpo-32216: Update dataclasses documentation (#6913)Barry Warsaw2018-05-161-75/+79
|
* bpo-32604: Improve subinterpreter tests. (#6914)Eric Snow2018-05-163-275/+1249
| | | Add more tests for subinterpreters. This patch also fixes a few small defects in the channel implementation.
* Remove an unneeded call into OpenSSL (GH-6887)Alex Gaynor2018-05-161-1/+0
|
* Fix ClassVar as string fails when getting type hints (GH-6824)Nina Zakharenko2018-05-163-6/+38
|
* bpo-28167: Remove platform.linux_distribution (GH-6871)Petr Viktorin2018-05-165-290/+13
| | | | | | | | * test_ssl: Remove skip_if_broken_ubuntu_ssl We no longer support OpenSSL 0.9.8.15.15. * bpo-28167: Remove platform.linux_distribution
* bpo-24318: Rewrite the README PGO section. (#6863)Gregory P. Smith2018-05-161-19/+20
| | | | | | * bpo-24318: Rewrite the README PGO section. Merged from a phone on an airplane. :)
* bpo-33536: Validate make_dataclass() field names. (GH-6906)Eric V. Smith2018-05-163-108/+182
|
* bpo-21475: Support the Sitemap extension in robotparser (GH-6883)Christopher Beacham2018-05-165-0/+47
|
* Minor tweaks to dataclasses docs. (GH-6903)Eric V. Smith2018-05-161-3/+3
|
* bpo-33534: Remove unneeded test. (GH-6897)Eric V. Smith2018-05-161-6/+5
| | | This condition as already tested before this code is called.
* Reflow dataclasses comments (GH-6893)Eric V. Smith2018-05-161-170/+176
| | | To be more consistent with other code (and so people stop hassling me!), reflow the dataclasses comments to not use a single space indentation when continuing a paragraph of text.
* bpo-32216: Add documentation for dataclasses (GH-6886)Eric V. Smith2018-05-162-0/+589
| | | This is an initial version that likely requires much polishing. I'm adding it lay out the structure and so we have something to start working from.
* bpo-32384: Skip test when _testcapi isn't available (GH-4940)Isaiah Peng2018-05-161-1/+7
|
* closes bpo-33512: use standard for detecting long double (GH-6847)Eitan Adler2018-05-164-37/+33
|
* bpo-33453: Handle string type annotations in dataclasses. (GH-6768)Eric V. Smith2018-05-167-20/+399
|
* bpo-33454: Fix arguments parsing in _xxsubinterpreters.channel_close(). ↵Serhiy Storchaka2018-05-151-7/+3
| | | | (GH-6747)
* bpo-30928: Update idlelib/NEWS.txt to 2018-05-14. (#6873)Terry Jan Reedy2018-05-151-0/+21
|
* bpo-32257: Add ssl.OP_NO_RENEGOTIATION (GH-5904)Christian Heimes2018-05-153-0/+15
| | | | | | | | The ssl module now contains OP_NO_RENEGOTIATION constant, available with OpenSSL 1.1.0h or 1.1.1. Note, OpenSSL 1.1.0h hasn't been released yet. Signed-off-by: Christian Heimes <christian@python.org>
* bpo-33503: Fix the broken pypi link in the source and the documentation ↵Stéphane Wirtel2018-05-1524-44/+45
| | | | (GH-6814)
* bpo-33509: Fix _warnings for module_globals=None (#6833)Victor Stinner2018-05-153-1/+29
| | | Don't crash on warnings.warn_explicit() if module_globals is not a dict.
* bpo-33465: Use an unlikely to be built-in C extension in a test (#6797)Barry Warsaw2018-05-151-5/+6
|
* bpo-29706: Test that IDLE colors async/await as keywords. (GH-6846)Terry Jan Reedy2018-05-151-3/+2
| | | | | Added to the eye-verified htest, not to the unittests. Also remove some stray leftover comments.
* bpo-28167: bump platform.linux_distribution removal to 3.8 (GH-6669)Matthias Bussonnier2018-05-154-7/+12
| | | | | Also bump PendingDeprecationWarning to DeprecationWarning.
* bpo-33517: dataclasses: Add the field type to Field repr (GH-6858)Eric V. Smith2018-05-151-4/+10
|
* run autoreconf (GH-6850)Benjamin Peterson2018-05-152-466/+5
|
* bpo-33483: more correctly handle finding the C compiler (GH-6780)Eitan Adler2018-05-152-38/+2
| | | | | | | | | Instead of passing configure args such as --without-gcc or --with-icc, instead prefer to rely on the native way of finding the compiler: passing CC (or CPP or CXX depending). This allows configure to find the correct compiler instead of having to be explicitly told. It also more correctly builds on both macOS and FreeBSD since the system compiler is used by default (cc)
* Remove accidentally checked in files. (GH-6835)Eric V. Smith2018-05-154-78/+0
|
* bpo-16865: Support arrays >=2GB in ctypes. (GH-3006)Segev Finer2018-05-143-8/+16
|
* bpo-33497: Add NEWS and ACKS entries. (GH-6838)Ned Deily2018-05-142-0/+3
|
* Add AsyncContextManager to typing module documentation. (GH-6822)Travis DePrato2018-05-142-0/+7
|
* bpo-33497: Add errors param to cgi.parse_multipart and make an encoding in ↵Amber Brown2018-05-143-7/+27
| | | | FieldStorage use the given errors (GH-6804)
* bpo-33502: dataclass._Dataclassparams repr: use repr of each member. (GH-6812)Eric V. Smith2018-05-145-6/+84
|
* Fixed an unused variable warning introduced in GH-6800 (GH-6816)Alex Gaynor2018-05-141-1/+0
|
* bpo-33443 Fix typo in Python/import.c (GH-6722)ukwksk2018-05-141-5/+5
|
* bpo-32769: Write annotation entry for glossary (GH-6657)Andrés Delfino2018-05-141-17/+57
| | | | https://bugs.python.org/issue32769
* Add versionchanged in create_datagram_endpoint doc (#4697)Romuald Brunet2018-05-141-0/+3
| | | | | Most of the parameters were added in 3.4.4 (b9bf913ab32), but this change was not documented
* Remove `ifdef` check for an OpenSSL version (0.9.6) we don't support (GH-6800)Alex Gaynor2018-05-141-5/+2
|
* bpo-33494: Change dataclasses.Fields repr to use the repr of each of its ↵Eric V. Smith2018-05-142-8/+11
| | | | members (GH-6798)
* bpo-22069: Update TextIO documentation (GH-6609)Elena Oat2018-05-141-1/+1
| | | Clarify that flush is implied when the call to write contains a newline character.
* bpo-32861: urllib.robotparser fix incomplete __str__ methods. (GH-5711)Michael Lazar2018-05-143-5/+42
| | | | | | The urllib.robotparser's __str__ representation now includes wildcard entries and the "Crawl-delay" and "Request-rate" fields. Also removes extra newlines that were being appended to the end of the string.