Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Trivial cleanups following bpo-31370 (#3649) | Antoine Pitrou | 2017-09-18 | 1 | -1/+0 |
| | | | | | | * Trivial cleanups following bpo-31370 * Also cleanup the "importlib._bootstrap_external" module | ||||
* | bpo-30109: Fix reindent.py (GH-1207) | Mariatta | 2017-04-20 | 1 | -0/+7 |
| | | | Skip the file if it has bad encoding. | ||||
* | bpo-29972: Skip tests known to fail on AIX (#979) | Victor Stinner | 2017-04-04 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | | | | | * bpo-29972: Fix test_eintr on AIX On AIX, sigtimedwait(0.2) sleeps 199.8 ms, whereas the test expects 200 ms or longer. * bpo-29972: Skip some inet_pton() tests on AIX Skip some inet_pton() tests of test_socket on AIX. inet_pton() on AIX is less strict than on Linux and doesn't reject some invalid IP addresses. The unit tests test more the libc than Python itself. * bpo-29972: Skip tests known to fail on AIX * test_locale.test_strcoll_with_diacritic() * test_locale.test_strxfrm_with_diacritic() * test_strptime.test_week_of_year_and_day_of_week_calculation() * test_tools.test_POT_Creation_Date() | ||||
* | merge 3.5 | Benjamin Peterson | 2016-09-13 | 1 | -1/+2 |
|\ | |||||
| * | Issue #27952: Capture stderr in run_script() | Berker Peksag | 2016-09-13 | 1 | -1/+2 |
| | | |||||
* | | Issue #27952: Merge fixcid.py from 3.5 | Martin Panter | 2016-09-11 | 1 | -0/+91 |
|\ \ | |/ | |||||
| * | Issue #27952: Get fixcid.py working with the re module | Martin Panter | 2016-09-11 | 1 | -0/+91 |
| | | |||||
* | | Issue 27948: Allow backslashes in the literal string portion of f-strings, ↵ | Eric V. Smith | 2016-09-10 | 1 | -5/+5 |
| | | | | | | | | but not in the expressions. Also, require expressions to begin and end with literal curly braces. | ||||
* | | tests: use subTest in test_unparse.test_files | Yury Selivanov | 2016-09-09 | 1 | -2/+3 |
| | | |||||
* | | Issue #28038: Remove Tools/parser/com2ann.py and its unit test. | Guido van Rossum | 2016-09-09 | 1 | -260/+0 |
| | | | | | | | | Development is moving to https://github.com/ilevkivskyi/com2ann | ||||
* | | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. | Yury Selivanov | 2016-09-09 | 1 | -0/+260 |
| | | | | | | | | Patch by Ivan Levkivskyi. | ||||
* | | fix skipping #27921 for windows | Benjamin Peterson | 2016-09-05 | 1 | -2/+1 |
| | | |||||
* | | Issue 27921: Remove backslash from another f-string. I'll revert this change ↵ | Eric V. Smith | 2016-09-03 | 1 | -0/+10 |
| | | | | | | | | before beta 2. I also need to look in to why test_tools/test_unparse fails with the files that are now being skipped. | ||||
* | | Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a ↵ | Eric V. Smith | 2016-09-03 | 1 | -4/+0 |
| | | | | | | | | temporary restriction. In 3.6 beta 2, the plan is to again allow backslashes in the string parts of f-strings, but disallow them in the expression parts. | ||||
* | | Merge with 3.5 | Zachary Ware | 2016-08-30 | 1 | -1/+5 |
|\ \ | |/ | |||||
| * | Skip test_tools.test_i18n when pygettext.py is missing | Zachary Ware | 2016-08-30 | 1 | -1/+5 |
| | | |||||
* | | Remove more unused imports in tests. | Serhiy Storchaka | 2016-04-24 | 1 | -1/+0 |
| | | |||||
* | | Issue #23277: Remove unused imports in tests. | Serhiy Storchaka | 2016-04-24 | 3 | -4/+3 |
| | | |||||
* | | Issue #23277: Remove unused support.run_unittest import. | Serhiy Storchaka | 2016-04-24 | 1 | -1/+0 |
| | | |||||
* | | Issue #23277: Remove unused sys and os imports | Berker Peksag | 2016-04-24 | 2 | -2/+0 |
| | | | | | | | | Patch by Jon Dufresne. | ||||
* | | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
|\ \ | |/ | | | | | messages. | ||||
| * | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
| | | |||||
* | | Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py | Berker Peksag | 2016-03-06 | 1 | -0/+5 |
|\ \ | |/ | | | | | Patch by Guo Ci Teo. | ||||
| * | Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.py | Berker Peksag | 2016-03-06 | 1 | -0/+5 |
| | | | | | | | | Patch by Guo Ci Teo. | ||||
* | | Issue 25180: Fix Tools/parser/unparse.py for f-strings. Patch by Martin Panter. | Eric V. Smith | 2015-09-20 | 1 | -2/+9 |
| | | |||||
* | | Temporary hack for issue #25180: exclude test_fstring.py from the unparse ↵ | Eric V. Smith | 2015-09-19 | 1 | -0/+2 |
|/ | | | | round-tripping, while I figure out how to properly fix it. | ||||
* | Fix remaining tests and remove an unused import. | Berker Peksag | 2015-05-06 | 1 | -1/+1 |
| | |||||
* | Issue #9517: Move script_helper to the support package. | Berker Peksag | 2015-05-06 | 3 | -3/+3 |
| | | | | Patch by Christie Wilson. | ||||
* | #18128: use standard +NNNN timezone format in POT-Creation-Date header. | R David Murray | 2015-04-16 | 1 | -0/+68 |
| | | | | Patch by Michael McFadden, with a few small style tweaks. | ||||
* | Issue #22002: Make full use of test discovery in test sub-packages. | Zachary Ware | 2014-07-23 | 1 | -8/+2 |
| | | | | | | Adds `load_package_tests` function to test.support, uses it in test_asyncio, test_email, test_json, test_tools, test_importlib and all test_importlib sub-packages to implement test discovery. | ||||
* | Issue #21918: Convert test_tools.py to a sub-package of test. | Zachary Ware | 2014-07-16 | 9 | -0/+884 |