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
8493a048
Commit
8493a048
authored
Feb 28, 2001
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace normalization.
parent
c758fafe
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
12 deletions
+11
-12
Lib/__future__.py
Lib/__future__.py
+4
-4
Lib/inspect.py
Lib/inspect.py
+1
-1
Lib/pydoc.py
Lib/pydoc.py
+2
-2
Lib/test/test_global.py
Lib/test/test_global.py
+0
-1
Lib/urllib.py
Lib/urllib.py
+3
-3
Lib/webbrowser.py
Lib/webbrowser.py
+1
-1
No files found.
Lib/__future__.py
View file @
8493a048
...
...
@@ -24,18 +24,18 @@ OptionalRelease records the first release in which
was accepted.
In the case of MandatoryReleases that have not yet occurred,
MandatoryRelease predicts the release in which the feature will become part
In the case of MandatoryReleases that have not yet occurred,
MandatoryRelease predicts the release in which the feature will become part
of the language.
Else MandatoryRelease records when the feature became part of the language;
Else MandatoryRelease records when the feature became part of the language;
in releases at or after that, modules no longer need
from __future__ import FeatureName
to use the feature in question, but may continue to use such imports.
MandatoryRelease may also be None, meaning that a planned feature got
MandatoryRelease may also be None, meaning that a planned feature got
dropped.
No line is ever to be deleted from this file.
...
...
Lib/inspect.py
View file @
8493a048
...
...
@@ -612,5 +612,5 @@ def stack(context=1):
return
getouterframes
(
currentframe
().
f_back
,
context
)
def
trace
(
context
=
1
):
"""Return a list of records for the stack below the current exception."""
"""Return a list of records for the stack below the current exception."""
return
getinnerframes
(
sys
.
exc_traceback
,
context
)
Lib/pydoc.py
View file @
8493a048
...
...
@@ -445,7 +445,7 @@ class HTMLDoc(Doc):
modpkgs
.
append
((
modname
,
name
,
0
,
0
))
modnames
.
append
(
modname
)
elif
ispackage
(
path
):
modpkgs
.
append
((
file
,
name
,
1
,
0
))
modpkgs
.
append
((
file
,
name
,
1
,
0
))
modpkgs
.
sort
()
contents
=
self
.
multicolumn
(
modpkgs
,
self
.
modpkglink
)
result
=
result
+
self
.
bigsection
(
...
...
@@ -576,7 +576,7 @@ class HTMLDoc(Doc):
if
ispackage
(
path
):
found
(
file
,
1
)
for
file
in
files
:
path
=
os
.
path
.
join
(
dir
,
file
)
if
file
[:
1
]
!=
'_'
and
os
.
path
.
isfile
(
path
):
if
file
[:
1
]
!=
'_'
and
os
.
path
.
isfile
(
path
):
modname
=
modulename
(
file
)
if
modname
:
found
(
modname
,
0
)
...
...
Lib/test/test_global.py
View file @
8493a048
...
...
@@ -37,4 +37,3 @@ def wrong3():
global x
"""
compile_and_catch_warning
(
prog_text_3
)
Lib/urllib.py
View file @
8493a048
...
...
@@ -561,17 +561,17 @@ class FancyURLopener(URLopener):
See this URL for a description of the basic authentication scheme:
http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-v10-spec-00.txt"""
if
not
headers
.
has_key
(
'www-authenticate'
):
URLopener
.
http_error_default
(
self
,
url
,
fp
,
URLopener
.
http_error_default
(
self
,
url
,
fp
,
errmsg
,
headers
)
stuff
=
headers
[
'www-authenticate'
]
import
re
match
=
re
.
match
(
'[
\
t
]*([^
\
t
]+)[
\
t
]+realm="([^"]*)"'
,
stuff
)
if
not
match
:
URLopener
.
http_error_default
(
self
,
url
,
fp
,
URLopener
.
http_error_default
(
self
,
url
,
fp
,
errcode
,
errmsg
,
headers
)
scheme
,
realm
=
match
.
groups
()
if
scheme
.
lower
()
!=
'basic'
:
URLopener
.
http_error_default
(
self
,
url
,
fp
,
URLopener
.
http_error_default
(
self
,
url
,
fp
,
errcode
,
errmsg
,
headers
)
name
=
'retry_'
+
self
.
type
+
'_basic_auth'
if
data
is
None
:
...
...
Lib/webbrowser.py
View file @
8493a048
...
...
@@ -154,7 +154,7 @@ if os.environ.get("TERM") or os.environ.get("DISPLAY"):
def
open
(
self
,
url
,
new
=
1
,
autoraise
=
1
):
# XXX Currently I know no way to prevent KFM from
# opening a new win.
# opening a new win.
self
.
_remote
(
"openURL %s"
%
url
)
# Deprecated. May be removed in 2.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