Go to file
Tim Tisdall 9af19552ad remove local iso8601 and use pypi version
When running some tests on another project I stumbled upon a failed
test that revealed a bug in colander's iso8601.  If you try to
deserialize "2014-09-09T15:15:57.516967" into a datetime object you
get `datetime.datetime(2014, 9, 9, 15, 15, 57, 516966)` (notice the
microseconds are off by 1).  I traced it down to this:

```
groups["fraction"] = int(float("0.%s" % groups["fraction"]) * 1e6)
```

`int(float("0.%s" % "516967") * 1e6)` is equal to 516966 due to
rounding.

I was going to fix it, but iso8601 is a currently maintained project
on pypi that has this issue (and possibly others) already fixed.
So, it makes much more sense to offload everything back to that project.

The only difference (besides the bug fixes) is following:

`iso8601.Utc` => `iso8601.iso8601.Utc`
`iso8601.FixedOffset` => `iso8601.iso8601.FixedOffset`
2014-09-10 18:54:12 +00:00
2014-08-21 11:49:25 +02:00
2013-05-06 09:26:37 -04:00
2010-03-31 03:59:59 +00:00
2014-08-21 13:56:00 -05:00
2014-08-22 01:05:31 +09:00
2013-01-10 20:40:34 -05:00
2013-06-12 19:09:27 -04:00
2013-06-14 11:51:23 -04:00

Colander
========

An extensible package which can be used to:

- deserialize and validate a data structure composed of strings,
  mappings, and lists.

- serialize an arbitrary data structure to a data structure composed
  of strings, mappings, and lists.

It runs on Python 2.6, 2.7, 3.2, and 3.3.

Please see http://docs.pylonsproject.org/projects/colander/en/latest/
for further documentation.

See https://github.com/Pylons/colander for in-development version.
Description
RETIRED, further work has moved to Debian project infrastructure
Readme 831 KiB
Languages
Python 64%
Gettext Catalog 21.9%
Modelica 14.1%