Searched refs:PyErr_WarnPy3k (Results 1 – 25 of 46) sorted by relevance
12
/external/python/cpython2/Include/ |
D | warnings.h | 13 #define PyErr_WarnPy3k(msg, stacklevel) \ macro
|
/external/python/cpython2/Modules/ |
D | timingmodule.c | 57 if (PyErr_WarnPy3k("the timing module has been removed in " in inittiming()
|
D | fmmodule.c | 260 if (PyErr_WarnPy3k("the fm module has been removed in " in initfm()
|
D | dlmodule.c | 244 if (PyErr_WarnPy3k("the dl module has been removed in " in initdl()
|
D | operator.c | 72 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()
|
D | sunaudiodev.c | 456 if (PyErr_WarnPy3k("the sunaudiodev module has been removed in " in initsunaudiodev()
|
D | linuxaudiodev.c | 473 if (PyErr_WarnPy3k("the linuxaudiodev module has been removed in " in initlinuxaudiodev()
|
D | imgfile.c | 495 if (PyErr_WarnPy3k("the imgfile module has been removed in " in initimgfile()
|
D | parsermodule.c | 375 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()
|
D | imageop.c | 786 if (PyErr_WarnPy3k("the imageop module has been removed in " in initimageop()
|
/external/python/cpython2/Mac/Modules/ |
D | ColorPickermodule.c | 74 if (PyErr_WarnPy3k("In 3.x, the ColorPicker module is removed.", 1) < 0) in initColorPicker()
|
D | OSATerminology.c | 99 if (PyErr_WarnPy3k("In 3.x, the OSATerminology module is removed.", 1) < 0) in initOSATerminology()
|
D | autoGIL.c | 137 if (PyErr_WarnPy3k("In 3.x, the autoGIL module is removed.", 1) < 0) in initautoGIL()
|
D | icgluemodule.c | 457 if (PyErr_WarnPy3k("In 3.x, the icglue module is removed.", 1)) in initicglue()
|
D | MacOS.c | 698 if (PyErr_WarnPy3k("In 3.x, the MacOS module is removed.", 1))
|
/external/python/cpython2/Objects/ |
D | cellobject.c | 58 if (PyErr_WarnPy3k("cell comparisons not supported in 3.x", in cell_compare()
|
D | cobject.c | 14 return PyErr_WarnPy3k("CObject type is not supported in 3.x. " in cobject_deprecation_warning()
|
D | methodobject.c | 235 if (PyErr_WarnPy3k("builtin_function_or_method order " in meth_richcompare() 356 if (PyErr_WarnPy3k("__methods__ not supported in 3.x", in Py_FindMethodInChain()
|
D | frameobject.c | 28 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) \
|
D | fileobject.c | 2027 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()
|
D | classobject.c | 1205 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()
|
D | bufferobject.c | 239 if (PyErr_WarnPy3k("buffer() not supported in 3.x", 1) < 0) in buffer_new()
|
D | codeobject.c | 560 if (PyErr_WarnPy3k("code inequality comparisons not supported " in code_richcompare()
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 174 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/ |
D | 2.6a3.rst | 356 Added a new convenience macro, PyErr_WarnPy3k, for issuing Py3k warnings.
|
12