Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #23517: datetime.timedelta constructor now rounds microseconds to nearest | Victor Stinner | 2015-09-02 | 1 | -0/+5 |
| | | | | | | with ties going away from zero (ROUND_HALF_UP), as Python 2 and Python older than 3.3, instead of rounding to nearest with ties going to nearest even integer (ROUND_HALF_EVEN). | ||||
* | Merge 3.5 (issue #24975) | Yury Selivanov | 2015-09-02 | 1 | -0/+2 |
|\ | |||||
| * | Merge 3.5 heads (issue #24975) | Yury Selivanov | 2015-09-02 | 1 | -0/+2 |
| |\ | |||||
| | * | Issue #24975: Fix AST compilation for PEP 448 syntax. | Yury Selivanov | 2015-09-01 | 1 | -0/+2 |
| | | | |||||
* | | | Backed out changeset b690bf218702 | Victor Stinner | 2015-09-02 | 1 | -5/+0 |
| | | | | | | | | | | | | | | | | | | Issue #23517: the change broke test_datetime. datetime.timedelta() rounding mode must also be changed, and test_datetime must be updated for the new rounding mode (half up). | ||||
* | | | Issue #23517: datetime.datetime.fromtimestamp() and | Victor Stinner | 2015-09-01 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | datetime.datetime.utcfromtimestamp() now rounds to nearest with ties going away from zero, instead of rounding towards minus infinity (-inf), as Python 2 and Python older than 3.3. | ||||
* | | | Issue #24952: Merge 3.5 into 3.6 | Martin Panter | 2015-08-31 | 2 | -0/+4 |
|\ \ \ | |/ / | |||||
| * | | Issue #24952: Merge 3.4 into 3.5 | Martin Panter | 2015-08-31 | 2 | -0/+4 |
| |\ \ | |||||
| | * | | Issue #24952: Clarify default argument of stack_size() in threading, _thread | Martin Panter | 2015-08-31 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | Patch from Mattip. | ||||
| | * | | Issue #24931: Resolve __dict__ conflict in namedtuple subclasses. | Raymond Hettinger | 2015-08-30 | 1 | -0/+4 |
| | | | | |||||
* | | | | Issue #24881: Fixed setting binary mode in Python implementation of FileIO | Serhiy Storchaka | 2015-08-28 | 1 | -0/+3 |
|\ \ \ \ | |/ / / | | | | | | | | | on Windows and Cygwin. Patch from Akira Li. | ||||
| * | | | Issue #24881: Fixed setting binary mode in Python implementation of FileIO | Serhiy Storchaka | 2015-08-28 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | on Windows and Cygwin. Patch from Akira Li. | ||||
* | | | | Issue #21112: Fix regression in unittest.expectedFailure on subclasses. | Robert Collins | 2015-08-27 | 1 | -0/+3 |
|\ \ \ \ | |/ / / | | | | | | | | | Patch from Berker Peksag. | ||||
| * | | | Issue #21112: Fix regression in unittest.expectedFailure on subclasses. | Robert Collins | 2015-08-27 | 1 | -0/+3 |
| |\ \ \ | | |/ / | | | | | | | | | Patch from Berker Peksag. | ||||
| | * | | Issue #21112: Fix regression in unittest.expectedFailure on subclasses. | Robert Collins | 2015-08-27 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | Patch from Berker Peksag. | ||||
* | | | | merge | Raymond Hettinger | 2015-08-26 | 1 | -0/+3 |
|\ \ \ \ | |/ / / | |||||
| * | | | Issue #24913: Fix overrun error in deque.index(). | Raymond Hettinger | 2015-08-26 | 1 | -0/+3 |
| | | | | |||||
* | | | | Issue #23552: Timeit now warns when there is substantial (4x) variance | Robert Collins | 2015-08-26 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | between best and worst times. Patch from Serhiy Storchaka. | ||||
* | | | | Merge. | Larry Hastings | 2015-08-26 | 1 | -0/+12 |
|\ \ \ \ | |/ / / | |||||
| * | | | Misc/NEWS needs a Python 3.5.0rc3 section in 3.5 and trunk. | Larry Hastings | 2015-08-26 | 1 | -0/+12 |
| | | | | |||||
* | | | | Merge from 3.5 (with 3.5.0rc2 changes) into default (3.6). Messy! | Larry Hastings | 2015-08-25 | 1 | -65/+133 |
|\ \ \ \ | |/ / / | |||||
| * | | | Merge from Python 3.5.0 (rc2) to Python 3.5.1. | Larry Hastings | 2015-08-25 | 1 | -38/+33 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Added missing #-marks to Misc/NEWS lines. | Larry Hastings | 2015-08-25 | 1 | -12/+12 |
| | | | | |||||
| | * | | Added missing IDLE updates to Misc/NEWS that shipped with Python 3.5.0rc1. | Larry Hastings | 2015-08-25 | 1 | -1/+15 |
| | | | | |||||
| | * | | Move misplaced Misc/NEWS item from 3.5.0rc1 to 3.5.0rc2. | Larry Hastings | 2015-08-25 | 1 | -4/+4 |
| | | | | |||||
| | * | | Add missing Misc/NEWS item for merged pull request for issue #24867. | Larry Hastings | 2015-08-25 | 1 | -0/+2 |
| | | | | |||||
| | * | | Post-release updates for Python 3.5.0rc2. | Larry Hastings | 2015-08-25 | 1 | -0/+12 |
| | | | | |||||
| | * | | Version bump for Python 3.5.0rc2.v3.5.0rc2 | Larry Hastings | 2015-08-25 | 1 | -1/+1 |
| | | | | |||||
| | * | | Issue #24769: Interpreter now starts properly when dynamic loading | Larry Hastings | 2015-08-25 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | is disabled. Patch by Petr Viktorin. | ||||
| | * | | Merged in 1st1/cpython350 (pull request #5) | Larry Hastings | 2015-08-24 | 1 | -0/+2 |
| | |\ \ | | | | | | | | | | | | | | | | Issue #24867: Fix asyncio.Task.get_stack() for 'async def' coroutines | ||||
| | | * | | Issue #24867: Fix asyncio.Task.get_stack() for 'async def' coroutines | Yury Selivanov | 2015-08-17 | 1 | -0/+2 |
| | | | | | |||||
| | * | | | Merged in stevedower/cpython350 (pull request #6) | Larry Hastings | 2015-08-24 | 1 | -0/+2 |
| | |\ \ \ | | | | | | | | | | | | | | | | | | | Issue #24847: Removes vcruntime140.dll dependency from Tcl/Tk. | ||||
| | | * | | | Issue #24847: Removes vcruntime140.dll dependency from Tcl/Tk. | Steve Dower | 2015-08-19 | 1 | -0/+2 |
| | | |/ / | |||||
| | * | | | #21167: Fix definition of NAN when ICC used without -fp-model strict. | R David Murray | 2015-08-15 | 2 | -0/+4 |
| | |/ / | | | | | | | | | | | | | Patch from Chris Hogan of Intel, reviewed by Mark Dickinson. | ||||
| | * | | Merged in brettcannon/cpython350/3.5 (pull request #2) | larry | 2015-08-12 | 1 | -0/+4 |
| | |\ \ | | | | | | | | | | | | | | | | Issue #24492: make sure that ``from ... import ...` raises an ImportError if __name__ is not defined on a package. | ||||
* | | \ \ | Issue #24808: Merge 3.5 into 3.6 | Martin Panter | 2015-08-25 | 2 | -0/+4 |
|\ \ \ \ \ | |/ / / / | |||||
| * | | | | Issue #24808: Merge 3.4 into 3.5; adjust new tp_as_async field | Martin Panter | 2015-08-25 | 2 | -0/+4 |
| |\ \ \ \ | | | |_|/ | | |/| | | |||||
| | * | | | Issue #24808: Update the documentation of some PyTypeObject fields | Martin Panter | 2015-08-25 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | Patch by Joseph Weston. | ||||
* | | | | | Issue #10708: Add a link to devguide in Misc/Porting. | Berker Peksag | 2015-08-25 | 1 | -41/+1 |
|\ \ \ \ \ | |/ / / / | |||||
| * | | | | Issue #10708: Add a link to devguide in Misc/Porting. | Berker Peksag | 2015-08-25 | 1 | -41/+1 |
| | | | | | |||||
* | | | | | Issue #22812: Fix unittest discovery examples. | Robert Collins | 2015-08-24 | 2 | -0/+4 |
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | Patch from Pam McA'Nulty. | ||||
| * | | | | Issue #22812: Fix unittest discovery examples. | Robert Collins | 2015-08-24 | 2 | -0/+4 |
| |\ \ \ \ | | |/ / / | | | | | | | | | | | Patch from Pam McA'Nulty. | ||||
| | * | | | Issue #22812: Fix unittest discovery examples. | Robert Collins | 2015-08-24 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | Patch from Pam McA'Nulty. | ||||
| | * | | | Issue #23572: Fixed functools.singledispatch on classes with falsy metaclasses. | Yury Selivanov | 2015-08-18 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | Patch by Ethan Furman. | ||||
* | | | | | Issue #24633: site-packages/README -> README.txt. | Robert Collins | 2015-08-23 | 1 | -0/+2 |
| | | | | | |||||
* | | | | | Issue #20362: Honour TestCase.longMessage correctly in assertRegex. | Robert Collins | 2015-08-19 | 2 | -0/+4 |
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | Patch from Ilia Kurenkov. | ||||
| * | | | | Issue #20362: Honour TestCase.longMessage correctly in assertRegex. | Robert Collins | 2015-08-19 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | Patch from Ilia Kurenkov. | ||||
| * | | | | Issue #24847: Removes vcruntime140.dll dependency from Tcl/Tk. | Steve Dower | 2015-08-18 | 1 | -0/+2 |
| | | | | | |||||
| * | | | | Issue #23572: Fixed functools.singledispatch on classes with falsy metaclasses. | Yury Selivanov | 2015-08-18 | 1 | -0/+23 |
| | | | | | | | | | | | | | | | | | | | | Patch by Ethan Furman. | ||||
* | | | | | Issue #24879: Teach pydoc to display named tuple fields in the order they ↵ | Raymond Hettinger | 2015-08-19 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | were defined. |