summaryrefslogtreecommitdiff
path: root/dateutil/parser.py
Commit message (Collapse)AuthorAgeFilesLines
* Add fuzzy parsing that additionally returns the skipped substrings.Christopher Corley2012-12-241-6/+34
|
* Metadata fixesTomi Pieviläinen2012-03-031-2/+1
| | | | | | | | | | Fix remaining references to PSF license, change maintainer info. Removed most occurances of __author__, since it felt redundant with the copyright notice (credit) and package metadata (developer contact). Also fixed references to Python 2.3 (it's not even tested anymore) and changed calls from python3 to just python (let the system decide).
* Ismael Carnales sent a patch to add a time format + fixing format testsTomi Pieviläinen2012-02-191-0/+11
|
* Add "Sept" abbreviation to parserTomi Pieviläinen2012-02-191-1/+1
|
* Fix last ambigious isinstanceTomi Pieviläinen2012-02-191-1/+1
|
* Check for longs and ints in Python2.xTomi Pieviläinen2012-02-181-2/+2
|
* Merge new style classes branch, works now on 2.6-3.2Tomi Pieviläinen2012-02-181-1/+13
|\
* | PSF License doesn't exist. This is Simplified BSD.Gustavo Niemeyer2011-03-241-1/+1
| |
* | Applying Python 3 support patch by Brian Jones.Gustavo Niemeyer2011-03-241-19/+20
|/
* - Fixed case where tzrange.utcoffset and tzrange.dst() might fail dueniemeyer2008-02-281-1/+3
| | | | | | | | | | to a date being used where a datetime was expected (reported and fixed by Lennart Regebro). - Prevent tzstr from introducing daylight timings in strings that didn't specify them (reported by Lennart Regebro). - Calls like gettz("GMT+3") and gettz("UTC-2") will now return the expected values, instead of the TZ variable behavior.
* Fixed another precision problem on conversion of decimal seconds toniemeyer2008-02-281-8/+15
| | | | | microseconds, as reported by Erik Brown. Now they're gone for real, since it's not using floating point arithmetic anymore.
* All code is now compatible with new-style division.niemeyer2007-11-201-1/+1
|
* Updating copyright dates.niemeyer2007-11-121-1/+1
|
* Fixed bug in constructor of parser, and converted parser classes toniemeyer2007-11-121-18/+22
| | | | new-style classes. Original report and patch by Michael Elsdörfer.
* Fixed precision problem on conversion of decimal seconds toniemeyer2007-11-051-9/+7
| | | | microseconds, as reported by Skip Montanaro.
* Fixing parsing of XXhXXm formatted time after day/month/yearniemeyer2005-07-031-1/+2
| | | | has been parsed.
* Updating (c) information.niemeyer2005-02-241-2/+2
|
* Accept parserinfo instances as the parser parameter.niemeyer2005-02-221-2/+7
|
* StringIO returns '\x00' characters when given a unicode string. Ignoreniemeyer2005-02-221-0/+2
| | | | them while parsing dates.
* Fixed two digit zero-year parsing (such as 31-Dec-00), as reportedniemeyer2004-07-161-1/+1
| | | | by Jim Abramson, and included test case for this.
* Fixing time lexer bug in dates like "Sep.09.2003". It wasn'tniemeyer2004-03-101-38/+54
| | | | splitting "09.2003", as reported by Andre Wobst.
* Minor changes in __author__ variable.niemeyer2003-10-091-1/+1
|
* Implemented support for YYYYMMDDhhmm[ss] format dates in parser.niemeyer2003-10-091-0/+10
|
* Reorganized parser module in classes, and renamed the tzoffsets keywordniemeyer2003-10-061-538/+548
| | | | parameter of parser() function to tzinfos.
* Implemented new scheme to pass weekday information to relativedelta.niemeyer2003-09-291-1/+1
|
* Importing development code into trunk.niemeyer2003-09-281-0/+831