A type wrapper for the standard library `datetime` that supplies stricter checks, such as making 'datetime' not substitutable for 'date', and separating out Naive and Aware datetimes into separate, mutually-incompatible types.
Project description
DateType
A Workaround
DateType is a workaround for this
bug to demonstrate that we could
have a type-checking-time wrapper for datetime
that doesn't change (or almost
doesn't change) the implementation, but fixes up two very annoying behaviors of
the stdlib datetime
module:
-
a
datetime
now won't type-check as adate
- it still inherits at runtime (the implementation is, after all, not changed) but it doesn't inherit at type-time. -
there are separate types for naive and aware
datetime
s.
There's a very small bit of implementation glue (concrete @classmethod
s for
construction on the Naive
and Aware
types, and a few functions that do
runtime checks to convert to/from stdlib types).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for datetype-2024.2.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2581da77e9abfe903049a6835c84ec9e67d45f46ec5248958a260cf333b14c7 |
|
MD5 | 90c2dd5f264f7ce888714ac7f06dc470 |
|
BLAKE2b-256 | cf58277f08250aa1aa26ceb787535e154bcea988f893ca26b11b52537c5e7936 |