Home
last modified time | relevance | path

Searched refs:isidentifier (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/units/utils/
H A Dtest_isidentifier.py11 from ansible.utils.vars import isidentifier
23 assert isidentifier(identifier)
32 assert not isidentifier(identifier)
39 assert not isidentifier("True")
40 assert not isidentifier("False")
41 assert not isidentifier("None")
49 assert not isidentifier("křížek")
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/units/utils/
H A Dtest_isidentifier.py11 from ansible.utils.vars import isidentifier
23 assert isidentifier(identifier)
32 assert not isidentifier(identifier)
39 assert not isidentifier("True")
40 assert not isidentifier("False")
41 assert not isidentifier("None")
49 assert not isidentifier("křížek")
/dports/lang/py-hy/hy-0.19.0/hy/lex/
H A D__init__.py127 if not isidentifier(leading_underscores + s):
132 if c != mangle_delim and isidentifier('S' + c)
141 assert isidentifier(s)
196 def isidentifier(x): function
201 return x.isidentifier()
/dports/devel/py-future/future-0.18.2/docs/3rd-party-py3k-compat-code/
H A Dipython_py3compat.py65 def isidentifier(s, dotted=False): function
67 return all(isidentifier(a) for a in s.split("."))
68 return s.isidentifier()
114 def isidentifier(s, dotted=False): function
116 return all(isidentifier(a) for a in s.split("."))
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/lib/ansible/utils/
H A Dvars.py248 if not ident.isidentifier():
274 isidentifier = _isidentifier_PY3 variable
276 isidentifier = _isidentifier_PY2
279 isidentifier.__doc__ = """Determine if string is valid identifier.
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/lib/ansible/utils/
H A Dvars.py248 if not ident.isidentifier():
274 isidentifier = _isidentifier_PY3
276 isidentifier = _isidentifier_PY2
279 isidentifier.__doc__ = """Determine if string is valid identifier.
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/
H A D_pydev_completer.py224 def isidentifier(s): function
237 def isidentifier(s): function
238 return s.isidentifier()
279 if c in identifier_part or isidentifier(c) or c == u'.':
/dports/devel/py-debugpy/debugpy-1.5.1/src/debugpy/_vendored/pydevd/_pydev_bundle/
H A D_pydev_completer.py224 def isidentifier(s): function
237 def isidentifier(s): function
238 return s.isidentifier()
279 if c in identifier_part or isidentifier(c) or c == u'.':
/dports/devel/ipython5/ipython-5.10.0/IPython/utils/
H A Dpy3compat.py170 def isidentifier(s, dotted=False): function
172 return all(isidentifier(a) for a in s.split("."))
173 return s.isidentifier()
238 def isidentifier(s, dotted=False): function
240 return all(isidentifier(a) for a in s.split("."))
/dports/devel/py-ipython_genutils/ipython_genutils-0.2.0/ipython_genutils/
H A Dpy3compat.py182 def isidentifier(s, dotted=False): function
184 return all(isidentifier(a) for a in s.split("."))
185 return s.isidentifier()
239 def isidentifier(s, dotted=False): function
241 return all(isidentifier(a) for a in s.split("."))
/dports/devel/ipython/ipython-7.29.0/IPython/utils/
H A Dpy3compat.py155 def isidentifier(s, dotted=False): function
157 return all(isidentifier(a) for a in s.split("."))
158 return s.isidentifier()
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/plugins/action/
H A Dset_fact.py24 from ansible.utils.vars import isidentifier
48 if not isidentifier(k):
H A Dset_stats.py24 from ansible.utils.vars import isidentifier
66 if not isidentifier(k):
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/lib/ansible/plugins/action/
H A Dset_fact.py24 from ansible.utils.vars import isidentifier
48 if not isidentifier(k):
H A Dset_stats.py24 from ansible.utils.vars import isidentifier
66 if not isidentifier(k):
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/lib/ansible/plugins/action/
H A Dset_fact.py25 from ansible.utils.vars import isidentifier
48 if not isidentifier(k):
/dports/lang/python310/Python-3.10.1/Lib/idlelib/
H A Dhyperparser.py189 while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier():
191 if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier():
193 if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier():
200 if not str[i:pos].isidentifier():
/dports/lang/python37/Python-3.7.12/Lib/idlelib/
H A Dhyperparser.py189 while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier():
191 if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier():
193 if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier():
200 if not str[i:pos].isidentifier():
/dports/lang/python-tools/Python-3.8.12/Lib/idlelib/
H A Dhyperparser.py189 while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier():
191 if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier():
193 if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier():
200 if not str[i:pos].isidentifier():
/dports/lang/python39/Python-3.9.9/Lib/idlelib/
H A Dhyperparser.py189 while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier():
191 if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier():
193 if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier():
200 if not str[i:pos].isidentifier():
/dports/databases/py-sqlite3/Python-3.8.12/Lib/idlelib/
H A Dhyperparser.py189 while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier():
191 if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier():
193 if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier():
200 if not str[i:pos].isidentifier():
/dports/databases/py-gdbm/Python-3.8.12/Lib/idlelib/
H A Dhyperparser.py189 while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier():
191 if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier():
193 if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier():
200 if not str[i:pos].isidentifier():
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/idlelib/
H A Dhyperparser.py189 while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier():
191 if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier():
193 if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier():
200 if not str[i:pos].isidentifier():
/dports/lang/python311/Python-3.11.0a3/Lib/idlelib/
H A Dhyperparser.py189 while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier():
191 if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier():
193 if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier():
200 if not str[i:pos].isidentifier():
/dports/lang/python38/Python-3.8.12/Lib/idlelib/
H A Dhyperparser.py189 while i - 4 >= limit and ('a' + str[i - 4:pos]).isidentifier():
191 if i - 2 >= limit and ('a' + str[i - 2:pos]).isidentifier():
193 if i - 1 >= limit and ('a' + str[i - 1:pos]).isidentifier():
200 if not str[i:pos].isidentifier():

12345678910>>...15