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
28d4ba24
Commit
28d4ba24
authored
Sep 11, 1996
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another batch...
parent
c458e945
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
54 additions
and
28 deletions
+54
-28
Lib/dos-8x3/posixfil.py
Lib/dos-8x3/posixfil.py
+3
-0
Lib/dos-8x3/simpleht.py
Lib/dos-8x3/simpleht.py
+0
-12
Lib/dos-8x3/test_mat.py
Lib/dos-8x3/test_mat.py
+3
-2
Lib/dos-8x3/test_str.py
Lib/dos-8x3/test_str.py
+21
-0
Lib/dos_8x3/posixfil.py
Lib/dos_8x3/posixfil.py
+3
-0
Lib/dos_8x3/simpleht.py
Lib/dos_8x3/simpleht.py
+0
-12
Lib/dos_8x3/test_mat.py
Lib/dos_8x3/test_mat.py
+3
-2
Lib/dos_8x3/test_str.py
Lib/dos_8x3/test_str.py
+21
-0
No files found.
Lib/dos-8x3/posixfil.py
View file @
28d4ba24
...
...
@@ -196,6 +196,9 @@ class _posixfile_:
elif
sys
.
platform
in
[
'aix3'
,
'aix4'
]:
l_type
,
l_whence
,
l_start
,
l_len
,
l_sysid
,
l_pid
,
l_vfs
=
\
struct
.
unpack
(
'hhlllii'
,
flock
)
elif
sys
.
platform
==
"linux2"
:
l_type
,
l_whence
,
l_start
,
l_len
,
l_pid
,
l_sysid
=
\
struct
.
unpack
(
'hhllhh'
,
flock
)
else
:
l_type
,
l_whence
,
l_start
,
l_len
,
l_sysid
,
l_pid
=
\
struct
.
unpack
(
'hhllhh'
,
flock
)
...
...
Lib/dos-8x3/simpleht.py
View file @
28d4ba24
...
...
@@ -10,7 +10,6 @@ __version__ = "0.3"
import
os
import
pwd
import
sys
import
time
import
socket
...
...
@@ -20,17 +19,6 @@ import SocketServer
import
BaseHTTPServer
def
nobody_uid
():
"""Internal routine to get nobody's uid"""
try
:
nobody
=
pwd
.
getpwnam
(
'nobody'
)[
2
]
except
pwd
.
error
:
nobody
=
1
+
max
(
map
(
lambda
x
:
x
[
2
],
pwd
.
getpwall
()))
return
nobody
nobody
=
nobody_uid
()
class
SimpleHTTPRequestHandler
(
BaseHTTPServer
.
BaseHTTPRequestHandler
):
"""Simple HTTP request handler with GET and HEAD commands.
...
...
Lib/dos-8x3/test_mat.py
View file @
28d4ba24
...
...
@@ -3,8 +3,9 @@
from
test_support
import
*
eps
=
1e-5
print
'math module, testing with eps'
,
eps
seps
=
'1e-05'
eps
=
eval
(
seps
)
print
'math module, testing with eps'
,
seps
import
math
def
testit
(
name
,
value
,
expected
):
...
...
Lib/dos-8x3/test_str.py
0 → 100644
View file @
28d4ba24
import
strop
,
sys
def
test
(
name
,
input
,
output
):
f
=
getattr
(
strop
,
name
)
try
:
value
=
f
(
input
)
except
:
value
=
sys
.
exc_type
print
sys
.
exc_value
if
value
!=
output
:
print
f
,
`input`
,
`output`
,
`value`
test
(
'atoi'
,
" 1 "
,
1
)
test
(
'atoi'
,
" 1x"
,
ValueError
)
test
(
'atoi'
,
" x1 "
,
ValueError
)
test
(
'atol'
,
" 1 "
,
1L
)
test
(
'atol'
,
" 1x "
,
ValueError
)
test
(
'atol'
,
" x1 "
,
ValueError
)
test
(
'atof'
,
" 1 "
,
1.0
)
test
(
'atof'
,
" 1x "
,
ValueError
)
test
(
'atof'
,
" x1 "
,
ValueError
)
Lib/dos_8x3/posixfil.py
View file @
28d4ba24
...
...
@@ -196,6 +196,9 @@ class _posixfile_:
elif
sys
.
platform
in
[
'aix3'
,
'aix4'
]:
l_type
,
l_whence
,
l_start
,
l_len
,
l_sysid
,
l_pid
,
l_vfs
=
\
struct
.
unpack
(
'hhlllii'
,
flock
)
elif
sys
.
platform
==
"linux2"
:
l_type
,
l_whence
,
l_start
,
l_len
,
l_pid
,
l_sysid
=
\
struct
.
unpack
(
'hhllhh'
,
flock
)
else
:
l_type
,
l_whence
,
l_start
,
l_len
,
l_sysid
,
l_pid
=
\
struct
.
unpack
(
'hhllhh'
,
flock
)
...
...
Lib/dos_8x3/simpleht.py
View file @
28d4ba24
...
...
@@ -10,7 +10,6 @@ __version__ = "0.3"
import
os
import
pwd
import
sys
import
time
import
socket
...
...
@@ -20,17 +19,6 @@ import SocketServer
import
BaseHTTPServer
def
nobody_uid
():
"""Internal routine to get nobody's uid"""
try
:
nobody
=
pwd
.
getpwnam
(
'nobody'
)[
2
]
except
pwd
.
error
:
nobody
=
1
+
max
(
map
(
lambda
x
:
x
[
2
],
pwd
.
getpwall
()))
return
nobody
nobody
=
nobody_uid
()
class
SimpleHTTPRequestHandler
(
BaseHTTPServer
.
BaseHTTPRequestHandler
):
"""Simple HTTP request handler with GET and HEAD commands.
...
...
Lib/dos_8x3/test_mat.py
View file @
28d4ba24
...
...
@@ -3,8 +3,9 @@
from
test_support
import
*
eps
=
1e-5
print
'math module, testing with eps'
,
eps
seps
=
'1e-05'
eps
=
eval
(
seps
)
print
'math module, testing with eps'
,
seps
import
math
def
testit
(
name
,
value
,
expected
):
...
...
Lib/dos_8x3/test_str.py
0 → 100644
View file @
28d4ba24
import
strop
,
sys
def
test
(
name
,
input
,
output
):
f
=
getattr
(
strop
,
name
)
try
:
value
=
f
(
input
)
except
:
value
=
sys
.
exc_type
print
sys
.
exc_value
if
value
!=
output
:
print
f
,
`input`
,
`output`
,
`value`
test
(
'atoi'
,
" 1 "
,
1
)
test
(
'atoi'
,
" 1x"
,
ValueError
)
test
(
'atoi'
,
" x1 "
,
ValueError
)
test
(
'atol'
,
" 1 "
,
1L
)
test
(
'atol'
,
" 1x "
,
ValueError
)
test
(
'atol'
,
" x1 "
,
ValueError
)
test
(
'atof'
,
" 1 "
,
1.0
)
test
(
'atof'
,
" 1x "
,
ValueError
)
test
(
'atof'
,
" x1 "
,
ValueError
)
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