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
95f285c7
Commit
95f285c7
authored
Feb 24, 2009
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert unintended part of r69948. Pydoc was not supposed to change.
parent
4d9a823c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
Lib/pydoc.py
Lib/pydoc.py
+10
-10
No files found.
Lib/pydoc.py
View file @
95f285c7
...
...
@@ -390,7 +390,7 @@ class HTMLRepr(Repr):
# needed to make any special characters, so show a raw string.
return
'r'
+
testrepr
[
0
]
+
self
.
escape
(
test
)
+
testrepr
[
0
]
return
re
.
sub
(
r'((\\[\\abfnrtv\'"]|\\[0-9]..|\\x..|\\u....)+)'
,
r'<
span class="">\1</span
>'
,
r'<
font color="#c040c0">\1</font
>'
,
self
.
escape
(
testrepr
))
repr_str
=
repr_string
...
...
@@ -417,7 +417,7 @@ class HTMLDoc(Doc):
return
'''
<!doctype html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><title>Python: %s</title>
</head><body>
</head><body
bgcolor="#f0f0f8"
>
%s
</body></html>'''
%
(
title
,
contents
)
...
...
@@ -456,7 +456,7 @@ class HTMLDoc(Doc):
def
bigsection
(
self
,
title
,
*
args
):
"""Format a section with a big heading."""
title
=
'<
span class="bigsection">%s</span
>'
%
title
title
=
'<
big><strong>%s</strong></big
>'
%
title
return
self
.
section
(
title
,
*
args
)
def
preformat
(
self
,
text
):
...
...
@@ -477,7 +477,7 @@ class HTMLDoc(Doc):
result
=
result
+
'</td>'
return
'<table width="100%%" summary="list"><tr>%s</tr></table>'
%
result
def
grey
(
self
,
text
):
return
'<
span class="grey">%s</span
>'
%
text
def
grey
(
self
,
text
):
return
'<
font color="#909090">%s</font
>'
%
text
def
namelink
(
self
,
name
,
*
dicts
):
"""Make a link for an identifier, given name-to-URL mappings."""
...
...
@@ -508,7 +508,7 @@ class HTMLDoc(Doc):
else
:
url
=
'%s.html'
%
name
if
ispackage
:
text
=
'<s
pan class="package">%s</span
> (package)'
%
name
text
=
'<s
trong>%s</strong
> (package)'
%
name
else
:
text
=
name
return
'<a href="%s">%s</a>'
%
(
url
,
text
)
...
...
@@ -542,7 +542,7 @@ class HTMLDoc(Doc):
elif text[end:end+1] == '(':
results.append(self.namelink(name, methods, funcs, classes))
elif selfdot:
results.append('self.<s
pan class="
selfdot
">%s</span
>' % name)
results.append('self.<s
trong>%s</strong
>' % name)
else:
results.append(self.namelink(name, classes))
here = end
...
...
@@ -557,14 +557,14 @@ class HTMLDoc(Doc):
for entry in tree:
if type(entry) is type(()):
c, bases = entry
result = result + '<dt
class="
classlink
">'
result = result + '<dt
><font face="
helvetica
,
arial
">'
result = result + self.classlink(c, modname)
if bases and bases != (parent,):
parents = []
for base in bases:
parents.append(self.classlink(base, modname))
result = result + '(' + ', '.join(parents) + ')'
result = result + '
\
n
</dt>'
result = result + '
\
n
</
font></
dt>'
elif type(entry) is type([]):
result = result + '<dd>
\
n
%s</dd>
\
n
' % self.formattree(
entry, modname, c)
...
...
@@ -581,10 +581,10 @@ class HTMLDoc(Doc):
links = []
for i in range(len(parts)-1):
links.append(
'<a href="
%
s
.
html
"
class="
links
">%s
</a>' %
'<a href="
%
s
.
html
"
><font color="
#ffffff">%s</font>
</a>' %
(
'.'
.
join
(
parts
[:
i
+
1
]),
parts
[
i
]))
linkedname
=
'.'
.
join
(
links
+
parts
[
-
1
:])
head = '<
span class="
linkedname
">%s</span
>' % linkedname
head
=
'<
big><big><strong>%s</strong></big></big
>'
%
linkedname
try
:
path
=
inspect
.
getabsfile
(
object
)
url
=
path
...
...
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