Home
last modified time | relevance | path

Searched refs:has_location (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/test/test_importlib/
Dtest_spec.py86 self.assertFalse(spec.has_location)
97 self.assertFalse(spec.has_location)
109 self.assertFalse(spec.has_location)
121 self.assertFalse(spec.has_location)
126 self.assertFalse(spec.has_location)
127 spec.has_location = True
128 self.assertTrue(spec.has_location)
135 has_location=False,
146 has_location=True,
157 has_location=False,
[all …]
Dtest_util.py104 spec.has_location = True
111 spec.has_location = True
/external/python/cpython3/Lib/importlib/
D_bootstrap.py385 self.has_location == other.has_location)
411 def has_location(self): member in ModuleSpec
414 @has_location.setter
415 def has_location(self, value): member in ModuleSpec
537 if spec.has_location:
580 if spec.has_location:
/external/python/cpython3/Doc/library/
Dimportlib.rst1099 .. attribute:: has_location
/external/python/cpython3/Doc/reference/
Dimport.rst658 "has_location" attributes are consulted.
/external/python/cpython3/Misc/
DHISTORY3085 - Issue #18864: Added a setter for ModuleSpec.has_location.