Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9a34523e
Commit
9a34523e
authored
Apr 20, 1998
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
As Tim Peters points out, ``from string import *'' should not set re to None.
Also rename safe_env to _safe_env.
parent
476412a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
18 deletions
+22
-18
Lib/string.py
Lib/string.py
+11
-9
Lib/stringold.py
Lib/stringold.py
+11
-9
No files found.
Lib/string.py
View file @
9a34523e
...
...
@@ -326,23 +326,25 @@ def rfind(s, sub, i = 0, last=None):
return
r
# "Safe" environment for eval()
safe_env
=
{
"__builtins__"
:
{}}
_
safe_env
=
{
"__builtins__"
:
{}}
# Convert string to float
re
=
None
_
re
=
None
def
atof
(
str
):
"""atof(s) -> float
Return the floating point number represented by the string s.
"""
global
re
if
re
is
None
:
global
_
re
if
_
re
is
None
:
# Don't fail if re doesn't exist -- just skip the syntax check
try
:
import
re
except
ImportError
:
re
=
0
_re
=
0
else
:
_re
=
re
sign
=
''
s
=
strip
(
str
)
if
s
and
s
[
0
]
in
'+-'
:
...
...
@@ -351,10 +353,10 @@ def atof(str):
if
not
s
:
raise
ValueError
,
'non-float argument to string.atof'
while
s
[
0
]
==
'0'
and
len
(
s
)
>
1
and
s
[
1
]
in
digits
:
s
=
s
[
1
:]
if
re
and
not
re
.
match
(
'[0-9]*(
\
.[
0
-9]*)?([eE][-+]?[0-9]+)?$'
,
s
):
if
_re
and
not
_
re
.
match
(
'[0-9]*(
\
.[
0
-9]*)?([eE][-+]?[0-9]+)?$'
,
s
):
raise
ValueError
,
'non-float argument to string.atof'
try
:
return
float
(
eval
(
sign
+
s
,
safe_env
))
return
float
(
eval
(
sign
+
s
,
_
safe_env
))
except
SyntaxError
:
raise
ValueError
,
'non-float argument to string.atof'
...
...
@@ -384,7 +386,7 @@ def atoi(str, base=10):
for
c
in
s
:
if
c
not
in
digits
:
raise
ValueError
,
'non-integer argument to string.atoi'
return
eval
(
sign
+
s
,
safe_env
)
return
eval
(
sign
+
s
,
_
safe_env
)
# Convert string to long integer
def
atol
(
str
,
base
=
10
):
...
...
@@ -413,7 +415,7 @@ def atol(str, base=10):
for
c
in
s
:
if
c
not
in
digits
:
raise
ValueError
,
'non-integer argument to string.atol'
return
eval
(
sign
+
s
+
'L'
,
safe_env
)
return
eval
(
sign
+
s
+
'L'
,
_
safe_env
)
# Left-justify a string
def
ljust
(
s
,
width
):
...
...
Lib/stringold.py
View file @
9a34523e
...
...
@@ -326,23 +326,25 @@ def rfind(s, sub, i = 0, last=None):
return
r
# "Safe" environment for eval()
safe_env
=
{
"__builtins__"
:
{}}
_
safe_env
=
{
"__builtins__"
:
{}}
# Convert string to float
re
=
None
_
re
=
None
def
atof
(
str
):
"""atof(s) -> float
Return the floating point number represented by the string s.
"""
global
re
if
re
is
None
:
global
_
re
if
_
re
is
None
:
# Don't fail if re doesn't exist -- just skip the syntax check
try
:
import
re
except
ImportError
:
re
=
0
_re
=
0
else
:
_re
=
re
sign
=
''
s
=
strip
(
str
)
if
s
and
s
[
0
]
in
'+-'
:
...
...
@@ -351,10 +353,10 @@ def atof(str):
if
not
s
:
raise
ValueError
,
'non-float argument to string.atof'
while
s
[
0
]
==
'0'
and
len
(
s
)
>
1
and
s
[
1
]
in
digits
:
s
=
s
[
1
:]
if
re
and
not
re
.
match
(
'[0-9]*(
\
.[
0
-9]*)?([eE][-+]?[0-9]+)?$'
,
s
):
if
_re
and
not
_
re
.
match
(
'[0-9]*(
\
.[
0
-9]*)?([eE][-+]?[0-9]+)?$'
,
s
):
raise
ValueError
,
'non-float argument to string.atof'
try
:
return
float
(
eval
(
sign
+
s
,
safe_env
))
return
float
(
eval
(
sign
+
s
,
_
safe_env
))
except
SyntaxError
:
raise
ValueError
,
'non-float argument to string.atof'
...
...
@@ -384,7 +386,7 @@ def atoi(str, base=10):
for
c
in
s
:
if
c
not
in
digits
:
raise
ValueError
,
'non-integer argument to string.atoi'
return
eval
(
sign
+
s
,
safe_env
)
return
eval
(
sign
+
s
,
_
safe_env
)
# Convert string to long integer
def
atol
(
str
,
base
=
10
):
...
...
@@ -413,7 +415,7 @@ def atol(str, base=10):
for
c
in
s
:
if
c
not
in
digits
:
raise
ValueError
,
'non-integer argument to string.atol'
return
eval
(
sign
+
s
+
'L'
,
safe_env
)
return
eval
(
sign
+
s
+
'L'
,
_
safe_env
)
# Left-justify a string
def
ljust
(
s
,
width
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment