From: Neal Norwitz Date: Fri, 3 Mar 2006 00:48:46 +0000 (+0000) Subject: Stop building timing module, it's old and deprecated X-Git-Tag: v2.5a0~387 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6143c547dd45dfc56ad05af31b829479a3ce7e2d;p=python Stop building timing module, it's old and deprecated --- diff --git a/setup.py b/setup.py index 5ff13c00a1..de7c13c582 100644 --- a/setup.py +++ b/setup.py @@ -423,7 +423,9 @@ class PyBuildExt(build_ext): exts.append( Extension('syslog', ['syslogmodule.c']) ) # George Neville-Neil's timing module: - exts.append( Extension('timing', ['timingmodule.c']) ) + # Deprecated in PEP 4 http://www.python.org/peps/pep-0004.html + # http://mail.python.org/pipermail/python-dev/2006-January/060023.html + #exts.append( Extension('timing', ['timingmodule.c']) ) # # Here ends the simple stuff. From here on, modules need certain