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
83ff7498
Commit
83ff7498
authored
Feb 09, 2001
by
Eric S. Raymond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
String method conversion.
parent
2846b0ab
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
10 deletions
+6
-10
Lib/test/test_socket.py
Lib/test/test_socket.py
+1
-2
Lib/test/test_strftime.py
Lib/test/test_strftime.py
+2
-2
Lib/test/test_zlib.py
Lib/test/test_zlib.py
+2
-3
Lib/xml/__init__.py
Lib/xml/__init__.py
+1
-3
No files found.
Lib/test/test_socket.py
View file @
83ff7498
...
@@ -12,7 +12,6 @@ from test_support import verbose, TestFailed
...
@@ -12,7 +12,6 @@ from test_support import verbose, TestFailed
import
socket
import
socket
import
os
import
os
import
time
import
time
import
string
def
missing_ok
(
str
):
def
missing_ok
(
str
):
try
:
try
:
...
@@ -79,7 +78,7 @@ if verbose:
...
@@ -79,7 +78,7 @@ if verbose:
print
all_host_names
print
all_host_names
for
name
in
all_host_names
:
for
name
in
all_host_names
:
if
string
.
find
(
name
,
'.'
):
if
name
.
find
(
'.'
):
break
break
else
:
else
:
print
'FQDN not found'
print
'FQDN not found'
...
...
Lib/test/test_strftime.py
View file @
83ff7498
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Sanity checker for time.strftime
# Sanity checker for time.strftime
import
time
,
calendar
,
sys
,
string
,
os
,
re
import
time
,
calendar
,
sys
,
os
,
re
from
test_support
import
verbose
from
test_support
import
verbose
def
main
():
def
main
():
...
@@ -90,7 +90,7 @@ def strftest(now):
...
@@ -90,7 +90,7 @@ def strftest(now):
if
verbose
:
if
verbose
:
print
"Strftime test, platform: %s, Python version: %s"
%
\
print
"Strftime test, platform: %s, Python version: %s"
%
\
(
sys
.
platform
,
s
tring
.
split
(
sys
.
version
)[
0
])
(
sys
.
platform
,
s
ys
.
version
.
split
(
)[
0
])
for
e
in
expectations
:
for
e
in
expectations
:
try
:
try
:
...
...
Lib/test/test_zlib.py
View file @
83ff7498
import
zlib
import
zlib
import
sys
import
sys
import
imp
import
imp
import
string
try
:
try
:
t
=
imp
.
find_module
(
'test_zlib'
)
t
=
imp
.
find_module
(
'test_zlib'
)
...
@@ -57,7 +56,7 @@ bufs = []
...
@@ -57,7 +56,7 @@ bufs = []
for
i
in
range
(
0
,
len
(
buf
),
256
):
for
i
in
range
(
0
,
len
(
buf
),
256
):
bufs
.
append
(
co
.
compress
(
buf
[
i
:
i
+
256
]))
bufs
.
append
(
co
.
compress
(
buf
[
i
:
i
+
256
]))
bufs
.
append
(
co
.
flush
())
bufs
.
append
(
co
.
flush
())
combuf
=
string
.
join
(
bufs
,
''
)
combuf
=
''
.
join
(
bufs
)
decomp1
=
zlib
.
decompress
(
combuf
,
-
12
,
-
5
)
decomp1
=
zlib
.
decompress
(
combuf
,
-
12
,
-
5
)
if
decomp1
!=
buf
:
if
decomp1
!=
buf
:
...
@@ -70,7 +69,7 @@ bufs = []
...
@@ -70,7 +69,7 @@ bufs = []
for
i
in
range
(
0
,
len
(
combuf
),
128
):
for
i
in
range
(
0
,
len
(
combuf
),
128
):
bufs
.
append
(
deco
.
decompress
(
combuf
[
i
:
i
+
128
]))
bufs
.
append
(
deco
.
decompress
(
combuf
[
i
:
i
+
128
]))
bufs
.
append
(
deco
.
flush
())
bufs
.
append
(
deco
.
flush
())
decomp2
=
string
.
join
(
buf
,
''
)
decomp2
=
''
.
join
(
buf
)
if
decomp2
!=
buf
:
if
decomp2
!=
buf
:
print
"decompressobj with init options failed"
print
"decompressobj with init options failed"
else
:
else
:
...
...
Lib/xml/__init__.py
View file @
83ff7498
...
@@ -15,9 +15,7 @@ sax -- The Simple API for XML, developed by XML-Dev, led by David
...
@@ -15,9 +15,7 @@ sax -- The Simple API for XML, developed by XML-Dev, led by David
__all__
=
[
"dom"
,
"parsers"
,
"sax"
]
__all__
=
[
"dom"
,
"parsers"
,
"sax"
]
import
string
__version__
=
"$Revision$"
.
split
()[
1
]
__version__
=
string
.
split
(
"$Revision$"
)[
1
]
del
string
_MINIMUM_XMLPLUS_VERSION
=
(
0
,
6
,
1
)
_MINIMUM_XMLPLUS_VERSION
=
(
0
,
6
,
1
)
...
...
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