summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-04-06 09:01:11 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-04-06 09:01:11 (GMT)
commitff41c48a77b7d1411ce97190c8b8405bdaa261e1 (patch)
tree94763135f421e0c32c6356e083c4d3521e43cd67 /Python/bltinmodule.c
parent50c61d5a6c2c551b31270d78b9e53ccef3fdf7a8 (diff)
downloadcpython-ff41c48a77b7d1411ce97190c8b8405bdaa261e1.zip
cpython-ff41c48a77b7d1411ce97190c8b8405bdaa261e1.tar.gz
cpython-ff41c48a77b7d1411ce97190c8b8405bdaa261e1.tar.bz2
SF patch #701494: more apply removals
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 29e11e5..c280cb4 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -112,7 +112,10 @@ PyDoc_STRVAR(apply_doc,
\n\
Call a callable object with positional arguments taken from the tuple args,\n\
and keyword arguments taken from the optional dictionary kwargs.\n\
-Note that classes are callable, as are instances with a __call__() method.");
+Note that classes are callable, as are instances with a __call__() method.\n\
+\n\
+Deprecated since release 2.3. Instead, use the extended call syntax:\n\
+ function(*args, **keywords).");
static PyObject *