Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-33609: small wording fixes to dict ordering docs | Neil Schemenauer | 2018-06-07 | 1 | -5/+5 |
| | | | A few wording improvements to dict ordering documentation. | ||||
* | bpo-33796: Ignore ClassVar for dataclasses.replace(). (GH-7488) | Eric V. Smith | 2018-06-07 | 2 | -86/+125 |
| | |||||
* | update 3.7 whatsnew entry about Unicode version (GH-7480) | Benjamin Peterson | 2018-06-07 | 1 | -2/+2 |
| | | | Followup to 4705ea38c900f068fd262aca02943896d1123544 and bpo-33778. | ||||
* | bpo-17909: Document that json.load can accept a binary IO (GH-7366) | Anthony Sottile | 2018-06-07 | 1 | -3/+7 |
| | |||||
* | bpo-29235: Update document for Profiler's context manager (GH-7331) | Scott Sanderson | 2018-06-07 | 3 | -8/+7 |
| | |||||
* | bpo-30436: Add missing space in importlib.util.find_spec() error message ↵ | Zackery Spytz | 2018-06-07 | 1 | -1/+1 |
| | | | | (GH-7385) | ||||
* | bpo-33274: Compliance with DOM L1: return removed attribute (#7465) | arikrupnik | 2018-06-07 | 3 | -1/+5 |
| | | | | | | * bpo-33274: Compliance with DOM L1: return removed attribute * Update 2018-06-06-22-01-33.bpo-33274.teYqv8.rst | ||||
* | update to Unicode 11.0.0 (closes bpo-33778) (GH-7439) | Benjamin Peterson | 2018-06-07 | 9 | -26084/+28267 |
| | | | Also, standardize indentation of generated tables. | ||||
* | bpo-32676, test_asyncio: Fix warning in test_error_in_call_soon() (GH-7462) | Victor Stinner | 2018-06-06 | 1 | -1/+5 |
| | | | | | | | Fix "<CoroWrapper ...> was never yielded from" warning in PyTask_PyFuture_Tests.test_error_in_call_soon() of test_asyncio.test_tasks. Close manually the coroutine on error. | ||||
* | bpo-33789, test_asyncio: Hide PendingDeprecationWarning (GH-7461) | Victor Stinner | 2018-06-06 | 1 | -1/+2 |
| | | | Hide PendingDeprecationWarning in test__register_task_3(). | ||||
* | bpo-33789: test_asyncio: Fix ResourceWarning (GH-7460) | Victor Stinner | 2018-06-06 | 2 | -2/+12 |
| | | | | | * Close sockets and streams to fix ResourceWarning warnings * Catch also OSError to hide a traceback on an expected handshake error | ||||
* | bpo-28240: timeit: Update repeat() doc (GH-7419) | Victor Stinner | 2018-06-06 | 2 | -6/+12 |
| | | | | Document that the default value of repeat changed from 3 to 5 in Python 3.7. | ||||
* | bpo-33773: Fix test.support.fd_count() on Linux/FreBSD (GH-7421) | Victor Stinner | 2018-06-06 | 2 | -8/+21 |
| | | | | | | | | | Substract one because listdir() opens internally a file descriptor to list the content of the /proc/self/fd/ directory. Add test_support.test_fd_count(). Move also MAXFD code before msvcrt.CrtSetReportMode(), to make sure that the report mode is always restored on failure. | ||||
* | bpo-33781: audioop: enhance rounding double as int (GH-7447) | Victor Stinner | 2018-06-06 | 1 | -11/+17 |
| | | | | | | Move the floor() call into fbound() to call floor() on a double rather than an int. The change should enhance the rounding. Document also (int)double rounding mode. | ||||
* | test.support.SaveSignals: fix typo (GH-7448) | Victor Stinner | 2018-06-06 | 1 | -1/+1 |
| | | | an => and | ||||
* | bpo-31044, test_posix: Reenable makedev() tests on FreeBSD (#7449) | Victor Stinner | 2018-06-06 | 1 | -5/+0 |
| | | | | | | The bug has been fixed 10 months ago: * https://svnweb.freebsd.org/base?view=revision&revision=321920 * https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221048 | ||||
* | remove hg support from patchcheck (GH-7440) | Benjamin Peterson | 2018-06-06 | 1 | -21/+3 |
| | |||||
* | bpo-33504: Migrate configparser from OrderedDict to dict. (#6819) | John Reese | 2018-06-05 | 5 | -43/+15 |
| | | | | | | With 3.7+, dictionary are ordered by design. Configparser still uses collections.OrderedDict, which is unnecessary. This updates the module to use the standard dict implementation by default, and changes the docs and tests to match. | ||||
* | Improve the subprocess restore_signals=True test. (GH-7414) | Gregory P. Smith | 2018-06-05 | 1 | -6/+22 |
| | | | It wasn't testing functionality. Now it is (on Linux anyways). | ||||
* | bpo-12486: Document tokenize.generate_tokens() as public API (#6957) | Thomas Kluyver | 2018-06-05 | 4 | -6/+35 |
| | | | | | | | | | | | | * Document tokenize.generate_tokens() * Add news file * Add test for generate_tokens * Document behaviour around ENCODING token * Add generate_tokens to __all__ | ||||
* | bpo-33751: Fix test_file. (GH-7378) | Serhiy Storchaka | 2018-06-05 | 1 | -84/+78 |
| | | | | | | testModeStrings and testTruncateOnWindows were depended on a file leaked in other tests. Also improve cleaning up after tests. | ||||
* | bpo-33755: Fix importlib.resources isolation tests (#7412) | Barry Warsaw | 2018-06-05 | 2 | -1/+9 |
| | |||||
* | bpo-33165: Added stacklevel parameter to logging APIs. (GH-7424) | Vinay Sajip | 2018-06-05 | 4 | -19/+77 |
| | |||||
* | bpo-31215: Add version changed notes for OpenSSL 1.1.0 compatibility (GH-7346) | Mayank Singhal | 2018-06-05 | 1 | -0/+3 |
| | |||||
* | bpo-33752: Fix a file leak in test_dbm. (GH-7376) | Serhiy Storchaka | 2018-06-05 | 1 | -4/+2 |
| | | | | With addCleanup() f.close() was executed after tearDown(). | ||||
* | bpo-33769: start_tls: Fix error message; cancel callbacks on error (GH-7403) | Yury Selivanov | 2018-06-05 | 3 | -3/+8 |
| | | | In addition to that, mark SSLTransport as "closed" in its "abort()" method to prevent bogus warnings. | ||||
* | bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381) | Zackery Spytz | 2018-06-05 | 3 | -20/+12 |
| | | | | Raise TypeError instead of SystemError for unsupported operations. | ||||
* | bpo-32392: Document env keyword argument of subprocess.run() (GH-7289) | Tobias Kunze | 2018-06-05 | 1 | -1/+6 |
| | |||||
* | bpo-5755: Move -Wstrict-prototypes to CFLAGS_NODIST (GH-7395) | INADA Naoki | 2018-06-05 | 3 | -10/+64 |
| | |||||
* | bpo-33753: Refactor creating temporary files in test_fileinput. (GH-7377) | Serhiy Storchaka | 2018-06-05 | 1 | -148/+101 |
| | |||||
* | bpo-33609: Document dict insertion order guarantee as of 3.7 (GH-7093) | INADA Naoki | 2018-06-04 | 1 | -0/+23 |
| | |||||
* | bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401) | Steve Dower | 2018-06-04 | 3 | -2/+12 |
| | |||||
* | bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367) | Cheryl Sabella | 2018-06-04 | 3 | -52/+57 |
| | |||||
* | bpo-33664: Scroll IDLE editor text by lines (GH-7351) | Cheryl Sabella | 2018-06-04 | 2 | -2/+32 |
| | | | | | | Previously, the mouse wheel and scrollbar slider moved text by a fixed number of pixels, resulting in partial lines at the top of the editor box. The change also applies to the shell and grep output windows, but not to read-only text views. | ||||
* | bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321) | Yury Selivanov | 2018-06-04 | 8 | -72/+258 |
| | | | | | | | * Fix AttributeError (not all SSL exceptions have 'errno' attribute) * Increase default handshake timeout from 10 to 60 seconds * Make sure start_tls can be cancelled correctly * Make sure any error in SSLProtocol gets propagated (instead of just being logged) | ||||
* | bpo-31849: Fix warning in pyhash.c (GH-6799) | A. Jesse Jiryu Davis | 2018-06-04 | 2 | -2/+3 |
| | |||||
* | bpo-27902: Add compatibility note to Profile docs (GH-7295) | Tobias Kunze | 2018-06-04 | 1 | -5/+6 |
| | |||||
* | bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263) | Farhaan Bukhsh | 2018-06-04 | 1 | -6/+7 |
| | | | The bytes parameter uses big endian. | ||||
* | Regenerate configure after changing configure.ac in GH-6987. (GH-7344) | Serhiy Storchaka | 2018-06-04 | 1 | -2/+2 |
| | |||||
* | bpo-33509: Fix test_warnings for python3 -Werror (GH-7365) | Victor Stinner | 2018-06-04 | 1 | -0/+2 |
| | | | | Fix test_warnings.test_module_globals() when python3 is run with -Werror. | ||||
* | travis: Fix macOS build (GH-7250) | INADA Naoki | 2018-06-04 | 1 | -1/+1 |
| | | | | | | Homebrew's python is now python3, but travis preinstalls old python2. So updated Homebrew requires `brew upgrade python` now. This commit disables auto update and use preinstalled version of Homebrew. | ||||
* | bpo-33759: Fix test.test_xmlrpc.ServerProxyTestCase. (GH-7362) | Serhiy Storchaka | 2018-06-04 | 1 | -1/+3 |
| | | | It depended on a global variable set by other tests. | ||||
* | bpo-33760: Fix file leaks in test_io. (GH-7361) | Serhiy Storchaka | 2018-06-04 | 1 | -0/+4 |
| | |||||
* | bpo-33764: Appveyor fixes (GH-7364) | Zachary Ware | 2018-06-04 | 1 | -4/+5 |
| | | | | | | * Prevent spurious message if taking a shortcut * Fix YAML style * Disable largefile tests | ||||
* | bpo-33761: Fix a file leak in test_iterparse in test_xml_etree. (GH-7358) | Serhiy Storchaka | 2018-06-03 | 1 | -3/+5 |
| | |||||
* | bpo-33750: Reset thread-local context precision in test_round(). (#7355) | Stefan Krah | 2018-06-03 | 1 | -11/+11 |
| | |||||
* | bpo-27485: Change urlparse tests to use private methods. (GH-7070) | Cheryl Sabella | 2018-06-03 | 1 | -12/+12 |
| | |||||
* | bpo-33744: Fix test_uu. (GH-7350) | Serhiy Storchaka | 2018-06-03 | 1 | -78/+26 |
| | | | Separate tests leaked files or were depended on files leaked in other tests. | ||||
* | bpo-23495: Correct the documentation for writerows() of csv Writer objects ↵ | Zackery Spytz | 2018-06-02 | 1 | -2/+3 |
| | | | | | (GH-6316) `writerows()` takes an iterable. | ||||
* | Fix typo in datamodel.rst (GH-6964) | Zach Mitchell | 2018-06-02 | 1 | -1/+1 |
| | | | This is a simple grammatical fix correcting "...object whose `__self__` attributes is ..." to "...object whose `__self__` attribute is ...". |