summaryrefslogtreecommitdiff
path: root/dateutil
Commit message (Collapse)AuthorAgeFilesLines
* Document fuzzy_with_tokens, update NEWS to prepare for 2.2Tomi Pieviläinen2013-10-311-1/+1
|
* Merge Christopher Corley's changesTomi Pieviläinen2013-10-311-6/+34
|\
| * Add fuzzy parsing that additionally returns the skipped substrings.Christopher Corley2012-12-241-6/+34
| |
* | More information about updating the zoneinfo database.Tomi Pieviläinen2013-10-311-3/+22
|/
* A small comment still pointed to NIH tzdata server2.1Tomi Pieviläinen2012-03-281-1/+1
|
* Change tzdata ftp server and processingTomi Pieviläinen2012-03-281-1/+4
| | | | | | | Due to Astrolabe lawsuite, the tzdata is now hosted at IANA. It seems like something has changed in the file ordering too, so that backwards now needs to be explicitly ordered as last to make links work (there was a bug that UTC wasn't linked to Etc/UTC, for example).
* Merge license fixesTomi Pieviläinen2012-03-288-17/+13
|\
| * Metadata fixesTomi Pieviläinen2012-03-038-17/+13
| | | | | | | | | | | | | | | | | | | | 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).
* | Fix relativedelta arithmetics, bug #965881Tomi Pieviläinen2012-03-281-37/+37
|/
* README fixes, tz cleanupTomi Pieviläinen2012-03-031-3/+2
|
* 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
|
* Fix opening files in tzTomi Pieviläinen2012-02-191-4/+6
|
* Fix relativedelta arithmeticsTomi Pieviläinen2012-02-191-7/+11
|
* Check for longs and ints in Python2.xTomi Pieviläinen2012-02-183-16/+18
|
* Merge new style classes branch, works now on 2.6-3.2Tomi Pieviläinen2012-02-184-23/+65
|\
| * Fix #885219 : Use new-style python classesgl@clarisys.fr2011-11-023-8/+8
| |
| * FIX #884317 : correct use of microsecond when talking about microsecondsgl@clarisys.fr2011-11-021-2/+2
| |
* | Updated version to 2.0.Gustavo Niemeyer2011-03-241-1/+1
| |
* | PSF License doesn't exist. This is Simplified BSD.Gustavo Niemeyer2011-03-246-6/+6
| |
* | Applying Python 3 support patch by Brian Jones.Gustavo Niemeyer2011-03-247-149/+143
|/
* Preparing for 1.5.niemeyer2010-03-303-4/+4
|
* Adam Ryan reported a problem in the relativedelta implementation whichniemeyer2010-03-301-1/+1
| | | | | | affected the yearday parameter in the month of January specifically. This has been unittested and fixed.
* As reported by Mathieu Bridon, rrules were matching the bysecond rulesniemeyer2010-03-301-1/+1
| | | | | | incorrectly against byminute in some circumstances when the SECONDLY frequency was in use, due to a copy & paste bug. The problem has been tested and corrected.
* Using .tar.gz extension, so that it works better with setuptools.niemeyer2008-08-071-1/+1
|
* - Fixed case where tzrange.utcoffset and tzrange.dst() might fail dueniemeyer2008-02-282-8/+19
| | | | | | | | | | 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.
* Updating version to 1.3.niemeyer2007-11-201-1/+1
|
* All code is now compatible with new-style division.niemeyer2007-11-206-21/+21
|
* 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.
* Moving the version number to dateutil/__init__.py, as requestedniemeyer2007-11-121-0/+1
| | | | by Darren Dale.
* Fixed precision problem on conversion of decimal seconds toniemeyer2007-11-051-9/+7
| | | | microseconds, as reported by Skip Montanaro.
* Initialize tzid and comps in tz.py, to prevent the code from everniemeyer2007-08-071-0/+2
| | | | | raising a NameError (even with broken files). Johan Dahlin suggested the fix after a pyflakes run.
* Removed bare string exceptions, as reported by Wilfredo Sánchez Vega.niemeyer2007-06-272-4/+4
|
* Fix bug in leap count parsing (reported and fixed by Eugene Oden).niemeyer2007-06-271-1/+1
|
* Ensure bysetpos is in an acceptable range.niemeyer2006-10-251-0/+7
|
* In tzfile, round offsets to full minutes if needed, since Python'sniemeyer2006-04-281-4/+9
| | | | | datetime doesn't accept sub-minute timezones. This prevents the problem reported by Ilpo Nyyssönen at http://python.org/sf/1447945.
* Get the latest zoneinfo file when many are available.niemeyer2005-12-221-5/+12
|
* - Fixed support for negative byyearday in rrule.niemeyer2005-12-223-6/+11
| | | | | | - New tests for negative byyearday. - Fixed some email references. - Updating version to 1.2.
* In gettz(), if name is None and everything else fails, return tzlocal().niemeyer2005-12-221-0/+2
|
* - Fixed rrule byyearday handling. Abramo Bagnara pointed out thatniemeyer2005-10-251-1/+2
| | | | | | RFC2445 allows negative numbers. - Updating NEWS file.
* Adding patch by Jeffrey Harris optimizing rrule.__contains__().niemeyer2005-07-191-0/+2
|
* Fixing parsing of XXhXXm formatted time after day/month/yearniemeyer2005-07-031-1/+2
| | | | has been parsed.
* Updating (c) information.niemeyer2005-02-248-11/+22
|
* - Include tzwinlocal in tz.__all__.niemeyer2005-02-242-5/+5
| | | | - Encode tzwin* standard and daylight saving names to iso-8859-1.
* - More improvements in tzwin.niemeyer2005-02-242-121/+153
| | | | | - New NEWS file. - Updated README with tzwin information.
* - Now tzfile() will unpickle to the updated file.niemeyer2005-02-233-9/+178
| | | | | | | - Adding tzwin.py, contributed by Jeffrey Harris. - Minor tweaks in setup.py. - Adding README and example.py. - Putting old scheduler.py in the sandbox.
* Fixing pickling of tz classes, as reported byniemeyer2005-02-231-0/+22
| | | | Andreas Köhler <KoehlerAndreas@web.de>.