mirror of
https://github.com/python/cpython.git
synced 2025-07-27 13:14:41 +00:00
A little reformating of Py3k warnings
This commit is contained in:
parent
fe4948bcef
commit
f19a7b90bd
11 changed files with 33 additions and 35 deletions
|
@ -166,7 +166,7 @@ builtin_apply(PyObject *self, PyObject *args)
|
|||
PyObject *t = NULL, *retval = NULL;
|
||||
|
||||
if (PyErr_WarnPy3k("apply() not supported in 3.x; "
|
||||
"use func(*args, **kwargs)", 1) < 0)
|
||||
"use func(*args, **kwargs)", 1) < 0)
|
||||
return NULL;
|
||||
|
||||
if (!PyArg_UnpackTuple(args, "apply", 1, 3, &func, &alist, &kwdict))
|
||||
|
@ -224,7 +224,7 @@ static PyObject *
|
|||
builtin_callable(PyObject *self, PyObject *v)
|
||||
{
|
||||
if (PyErr_WarnPy3k("callable() not supported in 3.x; "
|
||||
"use hasattr(o, '__call__')", 1) < 0)
|
||||
"use hasattr(o, '__call__')", 1) < 0)
|
||||
return NULL;
|
||||
return PyBool_FromLong((long)PyCallable_Check(v));
|
||||
}
|
||||
|
@ -704,7 +704,7 @@ builtin_execfile(PyObject *self, PyObject *args)
|
|||
int exists;
|
||||
|
||||
if (PyErr_WarnPy3k("execfile() not supported in 3.x; use exec()",
|
||||
1) < 0)
|
||||
1) < 0)
|
||||
return NULL;
|
||||
|
||||
if (!PyArg_ParseTuple(args, "s|O!O:execfile",
|
||||
|
@ -931,7 +931,7 @@ builtin_map(PyObject *self, PyObject *args)
|
|||
|
||||
if (func == Py_None) {
|
||||
if (PyErr_WarnPy3k("map(None, ...) not supported in 3.x; "
|
||||
"use list(...)", 1) < 0)
|
||||
"use list(...)", 1) < 0)
|
||||
return NULL;
|
||||
if (n == 1) {
|
||||
/* map(None, S) is the same as list(S). */
|
||||
|
@ -1959,7 +1959,7 @@ builtin_reduce(PyObject *self, PyObject *args)
|
|||
PyObject *seq, *func, *result = NULL, *it;
|
||||
|
||||
if (PyErr_WarnPy3k("reduce() not supported in 3.x; "
|
||||
"use functools.reduce()", 1) < 0)
|
||||
"use functools.reduce()", 1) < 0)
|
||||
return NULL;
|
||||
|
||||
if (!PyArg_UnpackTuple(args, "reduce", 2, 3, &func, &seq, &result))
|
||||
|
@ -2035,7 +2035,7 @@ static PyObject *
|
|||
builtin_reload(PyObject *self, PyObject *v)
|
||||
{
|
||||
if (PyErr_WarnPy3k("In 3.x, reload() is renamed to imp.reload()",
|
||||
1) < 0)
|
||||
1) < 0)
|
||||
return NULL;
|
||||
|
||||
return PyImport_ReloadModule(v);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue