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
ec8e7168
Commit
ec8e7168
authored
Aug 08, 2007
by
Collin Winter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert some usages of types.StringType to just str (since types.StringType has gone away).
parent
3045c7c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
Lib/wsgiref/handlers.py
Lib/wsgiref/handlers.py
+4
-5
No files found.
Lib/wsgiref/handlers.py
View file @
ec8e7168
"""Base classes for server/gateway implementations"""
from
types
import
StringType
from
.util
import
FileWrapper
,
guess_scheme
,
is_hop_by_hop
from
.headers
import
Headers
...
...
@@ -158,14 +157,14 @@ class BaseHandler:
elif
self
.
headers
is
not
None
:
raise
AssertionError
(
"Headers already set!"
)
assert
type
(
status
)
is
StringType
,
"Status must be a string"
assert
type
(
status
)
is
str
,
"Status must be a string"
assert
len
(
status
)
>=
4
,
"Status must be at least 4 characters"
assert
int
(
status
[:
3
]),
"Status message must begin w/3-digit code"
assert
status
[
3
]
==
" "
,
"Status message must have a space after code"
if
__debug__
:
for
name
,
val
in
headers
:
assert
type
(
name
)
is
StringType
,
"Header names must be strings"
assert
type
(
val
)
is
StringType
,
"Header values must be strings"
assert
type
(
name
)
is
str
,
"Header names must be strings"
assert
type
(
val
)
is
str
,
"Header values must be strings"
assert
not
is_hop_by_hop
(
name
),
"Hop-by-hop headers not allowed"
self
.
status
=
status
self
.
headers
=
self
.
headers_class
(
headers
)
...
...
@@ -189,7 +188,7 @@ class BaseHandler:
def
write
(
self
,
data
):
"""'write()' callable as specified by PEP 333"""
assert
type
(
data
)
is
StringType
,
"write() argument must be string"
assert
type
(
data
)
is
str
,
"write() argument must be string"
if
not
self
.
status
:
raise
AssertionError
(
"write() before start_response()"
)
...
...
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