summaryrefslogtreecommitdiffstats
path: root/Modules/dlmodule.c
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2008-05-11 01:09:32 (GMT)
committerBrett Cannon <bcannon@gmail.com>2008-05-11 01:09:32 (GMT)
commit7595c1a36bca73ddb8f80c4c7bac25015e7fae15 (patch)
tree263551dd74c8a216ac531e451edf164108c51923 /Modules/dlmodule.c
parenta975cd446e992793e4e4a8991e149797c224e68c (diff)
downloadcpython-7595c1a36bca73ddb8f80c4c7bac25015e7fae15.zip
cpython-7595c1a36bca73ddb8f80c4c7bac25015e7fae15.tar.gz
cpython-7595c1a36bca73ddb8f80c4c7bac25015e7fae15.tar.bz2
Flesh out the 3.0 deprecation to suggest using the ctypes module.
Diffstat (limited to 'Modules/dlmodule.c')
-rw-r--r--Modules/dlmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/dlmodule.c b/Modules/dlmodule.c
index 112e635..ccf1cb1 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 */