Home
last modified time | relevance | path

Searched refs:PyErr_WarnPy3k (Results 1 – 25 of 46) sorted by relevance

12

/external/python/cpython2/Include/
Dwarnings.h13 #define PyErr_WarnPy3k(msg, stacklevel) \ macro
/external/python/cpython2/Modules/
Dtimingmodule.c57 if (PyErr_WarnPy3k("the timing module has been removed in " in inittiming()
Dfmmodule.c260 if (PyErr_WarnPy3k("the fm module has been removed in " in initfm()
Ddlmodule.c244 if (PyErr_WarnPy3k("the dl module has been removed in " in initdl()
Doperator.c72 if (PyErr_WarnPy3k("operator.isCallable() is not supported in 3.x. " in op_isCallable()
81 if (PyErr_WarnPy3k("operator.sequenceIncludes() is not supported " in op_sequenceIncludes()
Dsunaudiodev.c456 if (PyErr_WarnPy3k("the sunaudiodev module has been removed in " in initsunaudiodev()
Dlinuxaudiodev.c473 if (PyErr_WarnPy3k("the linuxaudiodev module has been removed in " in initlinuxaudiodev()
Dimgfile.c495 if (PyErr_WarnPy3k("the imgfile module has been removed in " in initimgfile()
Dparsermodule.c375 if (PyErr_WarnPy3k("ast2tuple is removed in 3.x; use st2tuple", 1) < 0) in parser_ast2tuple()
430 if (PyErr_WarnPy3k("ast2list is removed in 3.x; use st2list", 1) < 0) in parser_ast2list()
477 if (PyErr_WarnPy3k("compileast is removed in 3.x; use compilest", 1) < 0) in parser_compileast()
713 if (PyErr_WarnPy3k("tuple2ast is removed in 3.x; use tuple2st", 1) < 0) in parser_tuple2ast()
Dimageop.c786 if (PyErr_WarnPy3k("the imageop module has been removed in " in initimageop()
/external/python/cpython2/Mac/Modules/
DColorPickermodule.c74 if (PyErr_WarnPy3k("In 3.x, the ColorPicker module is removed.", 1) < 0) in initColorPicker()
DOSATerminology.c99 if (PyErr_WarnPy3k("In 3.x, the OSATerminology module is removed.", 1) < 0) in initOSATerminology()
DautoGIL.c137 if (PyErr_WarnPy3k("In 3.x, the autoGIL module is removed.", 1) < 0) in initautoGIL()
Dicgluemodule.c457 if (PyErr_WarnPy3k("In 3.x, the icglue module is removed.", 1)) in initicglue()
DMacOS.c698 if (PyErr_WarnPy3k("In 3.x, the MacOS module is removed.", 1))
/external/python/cpython2/Objects/
Dcellobject.c58 if (PyErr_WarnPy3k("cell comparisons not supported in 3.x", in cell_compare()
Dcobject.c14 return PyErr_WarnPy3k("CObject type is not supported in 3.x. " in cobject_deprecation_warning()
Dmethodobject.c235 if (PyErr_WarnPy3k("builtin_function_or_method order " in meth_richcompare()
356 if (PyErr_WarnPy3k("__methods__ not supported in 3.x", in Py_FindMethodInChain()
Dframeobject.c28 if (PyErr_WarnPy3k(#NAME " has been removed in 3.x", 2) < 0) \
37 if (PyErr_WarnPy3k(#NAME " has been removed in 3.x", 2) < 0) \
Dfileobject.c2027 if (PyErr_WarnPy3k("f.xreadlines() not supported in 3.x, " in file_xreadlines()
2211 if (PyErr_WarnPy3k("file.softspace not supported in 3.x", 1) < 0) in get_softspace()
2220 if (PyErr_WarnPy3k("file.softspace not supported in 3.x", 1) < 0) in set_softspace()
Dclassobject.c1205 if (PyErr_WarnPy3k("in 3.x, __getslice__ has been removed; " in instance_slice()
1295 if (PyErr_WarnPy3k("in 3.x, __delslice__ has been " in instance_ass_slice()
1329 if (PyErr_WarnPy3k("in 3.x, __setslice__ has been " in instance_ass_slice()
Dbufferobject.c239 if (PyErr_WarnPy3k("buffer() not supported in 3.x", 1) < 0) in buffer_new()
Dcodeobject.c560 if (PyErr_WarnPy3k("code inequality comparisons not supported " in code_richcompare()
/external/python/cpython2/Python/
Dbltinmodule.c174 if (PyErr_WarnPy3k("apply() not supported in 3.x; " in builtin_apply()
447 if (PyErr_WarnPy3k("coerce() not supported in 3.x", 1) < 0) in builtin_coerce()
733 if (PyErr_WarnPy3k("execfile() not supported in 3.x; use exec()", in builtin_execfile()
964 if (PyErr_WarnPy3k("map(None, ...) not supported in 3.x; " in builtin_map()
2119 if (PyErr_WarnPy3k("reduce() not supported in 3.x; " in builtin_reduce()
2149 if (PyErr_WarnPy3k("In 3.x, reload() is renamed to imp.reload()", in builtin_reload()
/external/python/cpython2/Misc/NEWS.d/
D2.6a3.rst356 Added a new convenience macro, PyErr_WarnPy3k, for issuing Py3k warnings.

12