/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_funcattrs.py | 35 self.assertEqual(self.b.__module__, __name__)
|
test_inspect.py | 260 # Check class (uses __module__ attribute) 262 # Check a method (no __module__ attribute, falls back to filename) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
symbols.py | 301 scope.add_def('__module__')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
cPickle.so | |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_funcattrs.py | 35 self.assertEqual(self.b.__module__, __name__)
|
test_inspect.py | 260 # Check class (uses __module__ attribute) 262 # Check a method (no __module__ attribute, falls back to filename) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_inspect.py | 260 # Check class (uses __module__ attribute)
262 # Check a method (no __module__ attribute, falls back to filename)
|
test_descr.py | [all...] |
/external/python/cpython2/Lib/test/ |
test_inspect.py | 278 # Check class (uses __module__ attribute) 280 # Check a method (no __module__ attribute, falls back to filename) [all...] |
test_descr.py | [all...] |
/external/python/cpython3/Doc/reference/ |
datamodel.rst | 460 single: __module__ (function attribute) 486 | :attr:`__module__` | The name of the module the | Writable | 550 single: __module__ (method attribute) 555 method name (same as ``__func__.__name__``); :attr:`__module__` is the 661 set to ``None`` (but see the next item); :attr:`__module__` is the name of [all...] |
/external/python/cpython3/Lib/test/ |
test_inspect.py | 394 # Check class (uses __module__ attribute) 396 # Check a method (no __module__ attribute, falls back to filename) 433 def __module__(cls): member in class:TestRetrievingSourceCode.test_getfile_class_without_module.CM [all...] |
test_descr.py | [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_inspect.py | 260 # Check class (uses __module__ attribute) 262 # Check a method (no __module__ attribute, falls back to filename) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_inspect.py | 260 # Check class (uses __module__ attribute) 262 # Check a method (no __module__ attribute, falls back to filename) [all...] |
/external/python/cpython3/Lib/ |
doctest.py | [all...] |
/external/python/cpython2/Doc/reference/ |
datamodel.rst | 487 single: __module__ (function attribute) 513 | :attr:`__module__` | The name of the module the | Writable | 576 ``im_func.__name__``); :attr:`__module__` is the name of the module the method 589 single: __module__ (method attribute) 688 set to ``None`` (but see the next item); :attr:`__module__` is the name of [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
typeobject.c | 275 mod = PyDict_GetItemString(type->tp_dict, "__module__");
277 PyErr_Format(PyExc_AttributeError, "__module__");
297 "can't set %s.__module__", type->tp_name);
302 "can't delete %s.__module__", type->tp_name);
308 return PyDict_SetItemString(type->tp_dict, "__module__", value);
623 {"__module__", (getter)type_module, (setter)type_set_module, NULL},
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
typeobject.c | 271 mod = PyDict_GetItemString(type->tp_dict, "__module__");
273 PyErr_Format(PyExc_AttributeError, "__module__");
293 "can't set %s.__module__", type->tp_name);
298 "can't delete %s.__module__", type->tp_name);
304 return PyDict_SetItemString(type->tp_dict, "__module__", value);
617 {"__module__", (getter)type_module, (setter)type_set_module, NULL},
[all...] |
/external/python/cpython2/Objects/ |
typeobject.c | 295 mod = PyDict_GetItemString(type->tp_dict, "__module__"); 297 PyErr_Format(PyExc_AttributeError, "__module__"); 317 "can't set %s.__module__", type->tp_name); 322 "can't delete %s.__module__", type->tp_name); 328 return PyDict_SetItemString(type->tp_dict, "__module__", value); 643 {"__module__", (getter)type_module, (setter)type_set_module, NULL}, [all...] |
/external/tensorflow/tensorflow/tools/docs/ |
parser.py | [all...] |
/external/protobuf/python/ |
mox.py | [all...] |
/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.cc | 607 "__module__ = '$module_name$'\n", 774 printer_->Print("__module__ = '$module_name$'\n", [all...] |
/external/python/cpython3/Doc/library/ |
enum.rst | 1070 ['EARTH', 'JUPITER', 'MARS', 'MERCURY', 'NEPTUNE', 'SATURN', 'URANUS', 'VENUS', '__class__', '__doc__', '__members__', '__module__'] 1072 ['__class__', '__doc__', '__module__', 'name', 'surface_gravity', 'value']
|
/external/python/cpython3/Lib/collections/ |
__init__.py | 437 # For pickling to work, the __module__ variable needs to be set to the frame 448 result.__module__ = module [all...] |