From: Brett Cannon Date: Sun, 11 May 2008 01:09:32 +0000 (+0000) Subject: Flesh out the 3.0 deprecation to suggest using the ctypes module. X-Git-Tag: v2.6b1~517 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7595c1a36bca73ddb8f80c4c7bac25015e7fae15;p=python Flesh out the 3.0 deprecation to suggest using the ctypes module. --- diff --git a/Modules/dlmodule.c b/Modules/dlmodule.c index 112e6350e2..ccf1cb1835 100644 --- a/Modules/dlmodule.c +++ b/Modules/dlmodule.c @@ -236,7 +236,7 @@ initdl(void) PyObject *m, *d, *x; if (PyErr_WarnPy3k("the dl module has been removed in " - "Python 3.0", 2) < 0) + "Python 3.0; use the ctypes module instead", 2) < 0) return; /* Initialize object type */