Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #24254: Preserve class attribute definition order. | Eric Snow | 2016-09-05 | 7 | -7/+234 |
| | |||||
* | Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. | Christian Heimes | 2016-09-05 | 2 | -39/+68 |
|\ | |||||
| * | Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. | Christian Heimes | 2016-09-05 | 2 | -39/+68 |
| | | |||||
* | | Closes #11620: Fix support for SND_MEMORY in winsound.PlaySound. | Zachary Ware | 2016-09-05 | 1 | -0/+16 |
| | | | | | | | | Based on a patch by Tim Lesher. | ||||
* | | Closes #27748: Merge with 3.5 | Zachary Ware | 2016-09-05 | 2 | -203/+62 |
|\ \ | |/ | |||||
| * | Issue #27748: Simplify test_winsound. | Zachary Ware | 2016-09-05 | 2 | -203/+62 |
| | | | | | | | | | | | | The tests no longer attempt to figure out if a soundcard or particular system sounds are available. Instead, it just tries everything and accepts RuntimeError as a flavor of success. | ||||
* | | fix skipping #27921 for windows | Benjamin Peterson | 2016-09-05 | 1 | -2/+1 |
| | | |||||
* | | merge 3.5 (closes #27811) | Benjamin Peterson | 2016-09-05 | 1 | -0/+8 |
|\ \ | |/ | |||||
| * | do not allow _PyGen_Finalize to fail (closes #27811) | Benjamin Peterson | 2016-09-05 | 1 | -0/+8 |
| | | | | | | | | Patch from Armin Rigo. | ||||
* | | Merge with 3.5 | Terry Jan Reedy | 2016-09-05 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | Issue #27918# test.resource.is_gui_available no longer flashes tk window. | Terry Jan Reedy | 2016-09-05 | 1 | -2/+3 |
| | | | | | | | | Also, don't run it if 'gui' is not requested. Patch by Xiang Zhang. | ||||
* | | issue23591: more docs; slight change to repr | Ethan Furman | 2016-09-04 | 2 | -14/+11 |
| | | |||||
* | | Merge | Raymond Hettinger | 2016-09-04 | 1 | -3/+5 |
|\ \ | |/ | |||||
| * | Improve docs for random.seed() | Raymond Hettinger | 2016-09-04 | 1 | -3/+5 |
| | | |||||
| * | Fixes #27937: optimise code used in all logging calls. | Vinay Sajip | 2016-09-03 | 1 | -4/+5 |
| | | |||||
* | | Issue #27427: Additional tests for the math module. Thanks Francisco Couzo. | Mark Dickinson | 2016-09-04 | 1 | -6/+22 |
| | | |||||
* | | Issue #27953: skip failing math and cmath tests for tan on OS X 10.4. | Mark Dickinson | 2016-09-04 | 2 | -1/+38 |
| | | |||||
* | | Issue #26040: Improve test_math and test_cmath coverage and rigour. Thanks ↵ | Mark Dickinson | 2016-09-03 | 2 | -87/+319 |
| | | | | | | | | Jeff Allen. | ||||
* | | Issue 27921: Remove backslash from another f-string. I'll revert this change ↵ | Eric V. Smith | 2016-09-03 | 3 | -4/+14 |
| | | | | | | | | before beta 2. I also need to look in to why test_tools/test_unparse fails with the files that are now being skipped. | ||||
* | | Issue #11734: Add support for IEEE 754 half-precision floats to the struct ↵ | Mark Dickinson | 2016-09-03 | 1 | -2/+105 |
| | | | | | | | | module. Original patch by Eli Stevens. | ||||
* | | Closes #27935: returned numeric value for 'FATAL' logging level. | Vinay Sajip | 2016-09-03 | 2 | -0/+5 |
| | | |||||
* | | Merge upstream change. | Vinay Sajip | 2016-09-03 | 1 | -14/+14 |
|\ \ | |||||
| * | | Issue 27921: Remove backslash from another f-string. I'll revert this change ↵ | Eric V. Smith | 2016-09-03 | 1 | -14/+14 |
| | | | | | | | | | | | | before beta 2. | ||||
* | | | Fixes #27937: optimise code used in all logging calls. | Vinay Sajip | 2016-09-03 | 1 | -2/+3 |
|/ / | |||||
* | | Issue 27921: Remove backslash from another f-string. | Eric V. Smith | 2016-09-03 | 1 | -1/+1 |
| | | |||||
* | | Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a ↵ | Eric V. Smith | 2016-09-03 | 4 | -98/+54 |
| | | | | | | | | 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 | Raymond Hettinger | 2016-09-03 | 2 | -1/+12 |
|\ \ | |/ | |||||
| * | Issue 27936: Fix inconsistent round() behavior between float and int | Raymond Hettinger | 2016-09-03 | 2 | -1/+12 |
| | | |||||
* | | issue23591: bool(empty_flags) == False; more docs & tests | Ethan Furman | 2016-09-02 | 2 | -0/+19 |
| | | |||||
* | | issue23591: optimize _high_bit() | Ethan Furman | 2016-09-02 | 1 | -7/+2 |
| | | |||||
* | | PEP 7 style for if/else in C | Victor Stinner | 2016-09-02 | 1 | -0/+1 |
| | | | | | | | | Add also a newline for readability in normalize_encoding(). | ||||
* | | issue23591: add docs; code cleanup; more tests | Ethan Furman | 2016-09-02 | 2 | -21/+75 |
| | | |||||
* | | Merge backout for test suite fix | Jason R. Coombs | 2016-09-02 | 1 | -2/+9 |
|\ \ | |/ | |||||
| * | Merge backout for test suite fix | Jason R. Coombs | 2016-09-02 | 1 | -2/+9 |
| |\ | |||||
| | * | Backed out changeset cc86e9e102e8 | Jason R. Coombs | 2016-09-02 | 1 | -2/+9 |
| | | | |||||
* | | | Issue #12885: Merge with 3.5 | Jason R. Coombs | 2016-09-02 | 2 | -31/+59 |
|\ \ \ | |/ / | |||||
| * | | Issue #12285: Merge with 3.4 | Jason R. Coombs | 2016-09-02 | 2 | -31/+59 |
| |\ \ | | |/ | |||||
| | * | Issue #12285: Replace implementation of findall with implementation from ↵ | Jason R. Coombs | 2015-09-19 | 1 | -27/+21 |
| | | | | | | | | | | | | Setuptools 7ce820d524db. | ||||
| | * | Sort result to avoid spurious errors due to order. | Jason R. Coombs | 2015-08-30 | 1 | -2/+2 |
| | | | |||||
| | * | Add docstring and additional test revealing nuances of the implementation as ↵ | Jason R. Coombs | 2015-09-19 | 1 | -0/+16 |
| | | | | | | | | | | | | found in setuptools. | ||||
| | * | Add another test capturing the basic discovery expectation. | Jason R. Coombs | 2015-08-30 | 1 | -0/+11 |
| | | | |||||
| | * | Issue #12285: Add test capturing failure. | Jason R. Coombs | 2015-08-30 | 1 | -0/+10 |
| | | | |||||
| | * | Use modern mechanism for test discovery | Jason R. Coombs | 2015-08-30 | 1 | -5/+2 |
| | | | |||||
* | | | Issue #27881: Fixed possible bugs when setting ↵ | Serhiy Storchaka | 2016-09-01 | 1 | -4/+27 |
|\ \ \ | |/ / | | | | | | | | | | | | | sqlite3.Connection.isolation_level. Based on patch by Xiang Zhang. | ||||
| * | | Issue #27881: Fixed possible bugs when setting ↵ | Serhiy Storchaka | 2016-09-01 | 1 | -4/+27 |
| | | | | | | | | | | | | | | | | | | sqlite3.Connection.isolation_level. Based on patch by Xiang Zhang. | ||||
* | | | Issue #27919: Deprecate extra_path option in distutils. | Jason R. Coombs | 2016-09-01 | 1 | -0/+6 |
| | | | |||||
* | | | Minor beautification (turn nested-if into a conjunction). | Raymond Hettinger | 2016-09-01 | 1 | -6/+5 |
| | | | |||||
* | | | Issue #27922: IDLE tests no longer flash tk widgets (Merge 3.5). | Terry Jan Reedy | 2016-09-01 | 9 | -6/+21 |
|\ \ \ | |/ / | |||||
| * | | Issue #27922: IDLE tests no longer flash tk widgets. | Terry Jan Reedy | 2016-09-01 | 6 | -5/+13 |
| | | | |||||
* | | | Improve idlelib.textview comments. | Terry Jan Reedy | 2016-08-31 | 1 | -7/+6 |
| | | |