Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -3/+4 |
|\ | | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. Added few tests for __truediv__, __floordiv__ and __matmul__. | ||||
| * | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -3/+4 |
| | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. | ||||
* | | Closes issue #22791: Improved datetime from timestamp methods documentation. | Alexander Belopolsky | 2015-03-01 | 1 | -1/+1 |
| | | | | | | | | Original patch by Akira Li. | ||||
* | | Fixes #23521: Corrected pure python implementation of timedelta division. | Alexander Belopolsky | 2015-02-28 | 1 | -3/+23 |
|\ \ | |/ | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division. | ||||
| * | Fixes #23521: Corrected pure python implementation of timedelta division. | Alexander Belopolsky | 2015-02-28 | 1 | -3/+23 |
| | | | | | | | | | | * Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division. | ||||
* | | Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ | Serhiy Storchaka | 2015-01-31 | 1 | -25/+0 |
| | | | | | | | | implementation in issue #21408 they are redundant. | ||||
* | | Closes issue #20858: Enhancements/fixes to pure-python datetime module | Alexander Belopolsky | 2014-09-28 | 1 | -134/+147 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch brings the pure-python datetime more in-line with the C module. Patch contributed by Brian Kearns, a PyPy developer. PyPy project has been running these modifications in PyPy2 stdlib. This commit includes: - General PEP8/cleanups; - Better testing of argument types passed to constructors; - Removal of duplicate operations; - Optimization of timedelta creation; - Caching the result of __hash__ like the C accelerator; - Enhancements/bug fixes in tests. | ||||
* | | Issue #22033: Reprs of most Python implemened classes now contain actual | Serhiy Storchaka | 2014-07-25 | 1 | -20/+29 |
| | | | | | | | | class name instead of hardcoded one. | ||||
* | | remove the ability of datetime.time to be considered false (closes #13936) | Benjamin Peterson | 2014-03-20 | 1 | -6/+0 |
|/ | |||||
* | improve comment | Benjamin Peterson | 2013-08-29 | 1 | -2/+2 |
| | |||||
* | make lists uniformly integers for the benefit of pypy | Benjamin Peterson | 2013-08-29 | 1 | -2/+3 |
| | |||||
* | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -2/+2 |
|\ | | | | | | | error messages and comments. | ||||
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -2/+2 |
| | | | | | | | | error messages and comments. | ||||
* | | #18705: merge with 3.3. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #18705: fix a number of typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
| | | |||||
* | | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) | Brett Cannon | 2013-07-04 | 1 | -1/+1 |
| | | |||||
* | | Issue #18200: Update the stdlib (except tests) to use | Brett Cannon | 2013-06-14 | 1 | -1/+1 |
| | | | | | | | | ModuleNotFoundError. | ||||
* | | #17571: merge with 3.3. | Ezio Melotti | 2013-04-13 | 1 | -15/+3 |
|\ \ | |/ | |||||
| * | #17571: remove broken links in datetime.py docstring. | Ezio Melotti | 2013-04-13 | 1 | -15/+3 |
| | | |||||
* | | Issue #17516: use comment syntax for comments, instead of multiline string | Victor Stinner | 2013-03-26 | 1 | -195/+195 |
|/ | |||||
* | Closes #15973: fix a segmentation fault when comparing timezone objects. | Georg Brandl | 2012-09-22 | 1 | -0/+2 |
| | |||||
* | Issue #9527: tm_gmtoff has 'correct' sign. | Alexander Belopolsky | 2012-06-22 | 1 | -3/+3 |
| | |||||
* | Issue #9527: datetime.astimezone() method will now supply a class | Alexander Belopolsky | 2012-06-22 | 1 | -2/+2 |
| | | | | | timezone instance corresponding to the system local timezone when called with no arguments. | ||||
* | Issue #9527: datetime.astimezone() method will now supply a class | Alexander Belopolsky | 2012-06-22 | 1 | -2/+26 |
| | | | | | timezone instance corresponding to the system local timezone when called with no arguments. | ||||
* | Issue #15006: Allow equality comparison between naive and aware time | Alexander Belopolsky | 2012-06-16 | 1 | -8/+14 |
| | | | | or datetime objects. | ||||
* | Removed redundant code | Alexander Belopolsky | 2012-06-15 | 1 | -4/+2 |
| | |||||
* | Issue #2736: Added datetime.timestamp() method. | Alexander Belopolsky | 2012-06-08 | 1 | -1/+10 |
| | |||||
* | Close #14180: Factorize code to convert a number of seconds to time_t, ↵ | Victor Stinner | 2012-03-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | timeval or timespec time.ctime(), gmtime(), time.localtime(), datetime.date.fromtimestamp(), datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now raises an OverflowError, instead of a ValueError, if the timestamp does not fit in time_t. datetime.datetime.fromtimestamp() and datetime.datetime.utcfromtimestamp() now round microseconds towards zero instead of rounding to nearest with ties going away from zero. | ||||
* | Merge with 3.2. | Ezio Melotti | 2011-10-19 | 1 | -1/+1 |
|\ | |||||
| * | Remove duplication. | Ezio Melotti | 2011-10-19 | 1 | -1/+1 |
| | | |||||
* | | Issue #11930: Remove year >= 1000 limitation from datetime.strftime. | Alexander Belopolsky | 2011-05-02 | 1 | -4/+0 |
|/ | | | | Patch by Victor Stinner. | ||||
* | Issue #11576: Fixed timedelta subtraction glitch on big timedelta values | Alexander Belopolsky | 2011-04-06 | 1 | -1/+5 |
| | |||||
* | Issue #1777412: extended year range of strftime down to 1000. | Alexander Belopolsky | 2011-01-08 | 1 | -4/+4 |
| | |||||
* | Issue 9183: Intern UTC timezone. | Alexander Belopolsky | 2010-10-14 | 1 | -16/+23 |
| | |||||
* | Fixed microsecond rounding in python version of utcfromtimestamp | Alexander Belopolsky | 2010-09-21 | 1 | -5/+10 |
| | |||||
* | Make python version of fromtimestamp behave more like C. | Alexander Belopolsky | 2010-07-26 | 1 | -9/+13 |
| | |||||
* | Use _datetime docstring if _datetime is available. | Alexander Belopolsky | 2010-07-23 | 1 | -0/+5 |
| | |||||
* | Issue #7989: Added pure python implementation of the datetime module. | Alexander Belopolsky | 2010-07-23 | 1 | -0/+2087 |