Searched refs:idstring (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/email/ |
D | utils.py | 177 def make_msgid(idstring=None): argument 188 if idstring is None: 189 idstring = '' 191 idstring = '.' + idstring 193 msgid = '<%d.%d.%d%s@%s>' % (timeval, pid, randint, idstring, idhost)
|
/external/python/cpython3/Lib/email/ |
D | utils.py | 174 def make_msgid(idstring=None, domain=None): argument 187 if idstring is None: 188 idstring = '' 190 idstring = '.' + idstring 193 msgid = '<%d.%d.%d%s@%s>' % (timeval, pid, randint, idstring, domain)
|
/external/iproute2/examples/ |
D | dhcp-client-script | 301 local idstring="#### Generated by DHCPCD" 309 echo $idstring > /etc/resolv.conf.dhcp 324 if [ "`head -1 /etc/resolv.conf`" != "$idstring" ]; then
|
/external/python/cpython2/Lib/ |
D | pdb.py | 442 idstring = identifier.split("'") 443 if len(idstring) == 1: 445 id = idstring[0].strip() 446 elif len(idstring) == 3: 448 id = idstring[1].strip()
|
/external/python/cpython3/Lib/ |
D | pdb.py | 713 idstring = identifier.split("'") 714 if len(idstring) == 1: 716 id = idstring[0].strip() 717 elif len(idstring) == 3: 719 id = idstring[1].strip()
|
/external/python/cpython2/Doc/library/ |
D | email.util.rst | 107 .. function:: make_msgid([idstring]) 110 :mailheader:`Message-ID` header. Optional *idstring* if given, is a string used
|
/external/python/cpython3/Doc/library/ |
D | email.utils.rst | 30 .. function:: make_msgid(idstring=None, domain=None) 33 :mailheader:`Message-ID` header. Optional *idstring* if given, is a string
|
/external/python/cpython3/Lib/test/test_email/ |
D | test_email.py | 3317 email.utils.make_msgid(idstring='test-idstring',
|