summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2005-01-13 04:12:31 (GMT)
committerSkip Montanaro <skip@pobox.com>2005-01-13 04:12:31 (GMT)
commit0af3ade6aa597a8871dbb62c312a8ab62e3cd309 (patch)
treea7d4665e4c36907f627780ebbd7bff17f2e0b46b /Misc
parent2f8c6589f5bb1a2e360d040bc38996d95bfca511 (diff)
downloadcpython-0af3ade6aa597a8871dbb62c312a8ab62e3cd309.zip
cpython-0af3ade6aa597a8871dbb62c312a8ab62e3cd309.tar.gz
cpython-0af3ade6aa597a8871dbb62c312a8ab62e3cd309.tar.bz2
Add strptime() constructor to datetime class. Thanks to Josh Spoerri for
the changes.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a582d90..3c192ad 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -548,6 +548,7 @@ Dirk Soede
Paul Sokolovsky
Clay Spence
Per Spilling
+Joshua Spoerri
Noah Spurrier
Oliver Steele
Greg Stein
diff --git a/Misc/NEWS b/Misc/NEWS
index 26edc89..5ad39e2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,8 @@ Extension Modules
This allows islice() to work more readily with slices:
islice(s.start, s.stop, s.step)
+- datetime.datetime() now has a strptime class method which can be used to
+ create datetime object using a string and format.
Library
-------