commit | bb141bb1f4ece144f681739279dba266f5e64a9d | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Mon May 12 03:47:47 2008 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Mon May 12 03:47:47 2008 +0000 |
tree | 1be831a831b6ca92ff8febf3a761e75227d75b8d | |
parent | ac861b5a172a389f7d062fee6d88ded17e458b2e [diff] [blame] |
Deprecate the timing module for removal in Python 3.0.
diff --git a/Modules/timingmodule.c b/Modules/timingmodule.c index 56e057a..0da5c6b 100644 --- a/Modules/timingmodule.c +++ b/Modules/timingmodule.c
@@ -54,5 +54,9 @@ PyMODINIT_FUNC inittiming(void) { + if (PyErr_WarnPy3k("the timing module has been removed in " + "Python 3.0; use time.clock() instead", 2) < 0) + return; + (void)Py_InitModule("timing", timing_methods); }