OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:strop
(Results
1 - 6
of
6
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strop.py
2
warnings.filterwarnings("ignore", "
strop
functions are obsolete;",
5
import
strop
namespace
13
self.assertTrue(
strop
.atoi(" 1 ") == 1)
14
self.assertRaises(ValueError,
strop
.atoi, " 1x")
15
self.assertRaises(ValueError,
strop
.atoi, " x1 ")
18
self.assertTrue(
strop
.atol(" 1 ") == 1L)
19
self.assertRaises(ValueError,
strop
.atol, " 1x")
20
self.assertRaises(ValueError,
strop
.atol, " x1 ")
23
self.assertTrue(
strop
.atof(" 1 ") == 1.0)
24
self.assertRaises(ValueError,
strop
.atof, " 1x"
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strop.py
2
warnings.filterwarnings("ignore", "
strop
functions are obsolete;",
5
import
strop
namespace
13
self.assertTrue(
strop
.atoi(" 1 ") == 1)
14
self.assertRaises(ValueError,
strop
.atoi, " 1x")
15
self.assertRaises(ValueError,
strop
.atoi, " x1 ")
18
self.assertTrue(
strop
.atol(" 1 ") == 1L)
19
self.assertRaises(ValueError,
strop
.atol, " 1x")
20
self.assertRaises(ValueError,
strop
.atol, " x1 ")
23
self.assertTrue(
strop
.atof(" 1 ") == 1.0)
24
self.assertRaises(ValueError,
strop
.atof, " 1x"
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py
6
# called
strop
, but
strop
is now obsolete itself.
416
# library, which uses
strop
for many more things than just the few outlined
423
# Try importing optional built-in module "
strop
" -- if it exists,
429
from
strop
import maketrans, lowercase, uppercase, whitespace
string.py
6
a built-in module called
strop
, but
strop
is now obsolete itself.
522
# Try importing optional built-in module "
strop
" -- if it exists,
528
from
strop
import maketrans, lowercase, uppercase, whitespace
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py
6
# called
strop
, but
strop
is now obsolete itself.
416
# library, which uses
strop
for many more things than just the few outlined
423
# Try importing optional built-in module "
strop
" -- if it exists,
429
from
strop
import maketrans, lowercase, uppercase, whitespace
string.py
6
a built-in module called
strop
, but
strop
is now obsolete itself.
522
# Try importing optional built-in module "
strop
" -- if it exists,
528
from
strop
import maketrans, lowercase, uppercase, whitespace
Completed in 43 milliseconds