summaryrefslogtreecommitdiff
path: root/paste/util/datetimeutil.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix pyflakes warningsVictor Stinner2015-04-221-1/+0
| | | | | | * Remove unused variables * Remove unused imports * Remove dead code
* Port datetimeutil to Python 3Victor Stinner2015-04-211-9/+8
| | | | | * Replace string.atoi() with int() * Don't compare None with int
* Convert files from file format DOS to UNIXVictor Stinner2015-04-211-361/+361
|
* Python 3: Replace string functions with str methodsCyril Roelandt2014-03-181-13/+13
|
* A big commit, primarily aesthetic/whitespace in nature. This is the result ↵ianb2006-10-201-28/+37
| | | | of running pylint over the codebase. Some minor/hard-to-reach typos were also picked up.
* - raise type error on unknown monthscce2006-08-241-2/+2
| | | | - allow 'today' as keyword date
* (no commit message)cce2006-08-241-1/+1
|
* Somewhere in the past two years day_of_week changed tocce2006-08-241-1/+1
| | | | isoweekday() in the datetime API.
* - add support for 'dd-mon-yyyy' date formatcce2006-01-091-2/+5
|
* - better error checking in parse_datetimecce2006-01-081-45/+32
| | | | - remove unnecessary intermediaries
* - making timedate parser throw more exceptions on errorscce2006-01-081-52/+39
| | | | - cleaning up unnecessary code (that is duplicated in datetime built-in)
* - converted timedelta normalization to be fractions of hourscce2006-01-081-0/+375
- updated docstrings