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
2ee0e8ea
Commit
2ee0e8ea
authored
May 23, 2008
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert the renaming of repr to reprlib.
parent
778d5cc4
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
33 additions
and
39 deletions
+33
-39
Demo/pdist/cmptree.py
Demo/pdist/cmptree.py
+1
-1
Demo/pdist/server.py
Demo/pdist/server.py
+1
-1
Doc/library/datatypes.rst
Doc/library/datatypes.rst
+1
-1
Doc/library/repr.rst
Doc/library/repr.rst
+5
-9
Doc/tutorial/stdlib2.rst
Doc/tutorial/stdlib2.rst
+3
-3
Lib/bdb.py
Lib/bdb.py
+3
-3
Lib/copy.py
Lib/copy.py
+10
-9
Lib/idlelib/Debugger.py
Lib/idlelib/Debugger.py
+2
-2
Lib/idlelib/ObjectBrowser.py
Lib/idlelib/ObjectBrowser.py
+1
-1
Lib/pdb.py
Lib/pdb.py
+1
-1
Lib/pydoc.py
Lib/pydoc.py
+1
-1
Lib/repr.py
Lib/repr.py
+0
-0
Lib/test/test___all__.py
Lib/test/test___all__.py
+1
-1
Lib/test/test_py3kwarn.py
Lib/test/test_py3kwarn.py
+1
-1
Lib/test/test_repr.py
Lib/test/test_repr.py
+2
-2
Misc/NEWS
Misc/NEWS
+0
-3
No files found.
Demo/pdist/cmptree.py
View file @
2ee0e8ea
"""Compare local and remote dictionaries and transfer differing files -- like rdist."""
import
sys
from
repr
lib
import
repr
from
repr
import
repr
import
FSProxy
import
time
import
os
...
...
Demo/pdist/server.py
View file @
2ee0e8ea
...
...
@@ -4,7 +4,7 @@ import sys
import
socket
import
pickle
from
fnmatch
import
fnmatch
from
repr
lib
import
repr
from
repr
import
repr
# Default verbosity (0 = silent, 1 = print connections, 2 = print requests too)
...
...
Doc/library/datatypes.rst
View file @
2ee0e8ea
...
...
@@ -36,4 +36,4 @@ The following modules are documented in this chapter:
new.rst
copy.rst
pprint.rst
repr
lib
.rst
repr.rst
Doc/library/repr
lib
.rst
→
Doc/library/repr.rst
View file @
2ee0e8ea
:mod:`reprlib` --- Alternate :func:`repr` implementation
========================================================
.. module:: repr
:synopsis: Old name for the reprlib module.
:mod:`repr` --- Alternate :func:`repr` implementation
=====================================================
.. module:: repr
lib
.. module:: repr
:synopsis: Alternate repr() implementation with size limits.
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
.. note::
The :mod:`repr` module has been renamed to :mod:`reprlib` in
Python 3.0. It is importable under both names in Python 2.6
and the rest of the 2.x series.
Python 3.0.
The :mod:`repr
lib
` module provides a means for producing object representations
The :mod:`repr` module provides a means for producing object representations
with limits on the size of the resulting strings. This is used in the Python
debugger and may be useful in other contexts as well.
...
...
Doc/tutorial/stdlib2.rst
View file @
2ee0e8ea
...
...
@@ -13,11 +13,11 @@ programming needs. These modules rarely occur in small scripts.
Output Formatting
=================
The :mod:`repr
lib
` module provides a version of :func:`repr` customized for
The :mod:`repr` module provides a version of :func:`repr` customized for
abbreviated displays of large or deeply nested containers::
>>> import repr
lib
>>> repr
lib
.repr(set('supercalifragilisticexpialidocious'))
>>> import repr
>>> repr.repr(set('supercalifragilisticexpialidocious'))
"set(['a', 'c', 'd', 'e', 'f', 'g', ...])"
The :mod:`pprint` module offers more sophisticated control over printing both
...
...
Lib/bdb.py
View file @
2ee0e8ea
...
...
@@ -325,7 +325,7 @@ class Bdb:
#
def
format_stack_entry
(
self
,
frame_lineno
,
lprefix
=
': '
):
import
linecache
,
repr
lib
import
linecache
,
repr
frame
,
lineno
=
frame_lineno
filename
=
self
.
canonic
(
frame
.
f_code
.
co_filename
)
s
=
'%s(%r)'
%
(
filename
,
lineno
)
...
...
@@ -338,13 +338,13 @@ class Bdb:
else
:
args
=
None
if
args
:
s
=
s
+
repr
lib
.
repr
(
args
)
s
=
s
+
repr
.
repr
(
args
)
else
:
s
=
s
+
'()'
if
'__return__'
in
frame
.
f_locals
:
rv
=
frame
.
f_locals
[
'__return__'
]
s
=
s
+
'->'
s
=
s
+
repr
lib
.
repr
(
rv
)
s
=
s
+
repr
.
repr
(
rv
)
line
=
linecache
.
getline
(
filename
,
lineno
)
if
line
:
s
=
s
+
lprefix
+
line
.
strip
()
return
s
...
...
Lib/copy.py
View file @
2ee0e8ea
...
...
@@ -399,16 +399,17 @@ def _test():
print
l2
l
.
append
({
l
[
1
]:
l
,
'xyz'
:
l
[
2
]})
l3
=
copy
(
l
)
import
repr
lib
print
map
(
repr
lib
.
repr
,
l
)
print
map
(
repr
lib
.
repr
,
l1
)
print
map
(
repr
lib
.
repr
,
l2
)
print
map
(
repr
lib
.
repr
,
l3
)
import
repr
print
map
(
repr
.
repr
,
l
)
print
map
(
repr
.
repr
,
l1
)
print
map
(
repr
.
repr
,
l2
)
print
map
(
repr
.
repr
,
l3
)
l3
=
deepcopy
(
l
)
print
map
(
reprlib
.
repr
,
l
)
print
map
(
reprlib
.
repr
,
l1
)
print
map
(
reprlib
.
repr
,
l2
)
print
map
(
reprlib
.
repr
,
l3
)
import
repr
print
map
(
repr
.
repr
,
l
)
print
map
(
repr
.
repr
,
l1
)
print
map
(
repr
.
repr
,
l2
)
print
map
(
repr
.
repr
,
l3
)
if
__name__
==
'__main__'
:
_test
()
Lib/idlelib/Debugger.py
View file @
2ee0e8ea
...
...
@@ -413,8 +413,8 @@ class NamespaceViewer:
height
=
20
*
len
(
dict
)
# XXX 20 == observed height of Entry widget
self
.
master
=
master
self
.
title
=
title
import
repr
lib
self
.
repr
=
repr
lib
.
Repr
()
import
repr
self
.
repr
=
repr
.
Repr
()
self
.
repr
.
maxstring
=
60
self
.
repr
.
maxother
=
60
self
.
frame
=
frame
=
Frame
(
master
)
...
...
Lib/idlelib/ObjectBrowser.py
View file @
2ee0e8ea
...
...
@@ -11,7 +11,7 @@
from
TreeWidget
import
TreeItem
,
TreeNode
,
ScrolledCanvas
from
repr
lib
import
Repr
from
repr
import
Repr
myrepr
=
Repr
()
myrepr
.
maxstring
=
100
...
...
Lib/pdb.py
View file @
2ee0e8ea
...
...
@@ -8,7 +8,7 @@ import sys
import
linecache
import
cmd
import
bdb
from
repr
lib
import
Repr
from
repr
import
Repr
import
os
import
re
import
pprint
...
...
Lib/pydoc.py
View file @
2ee0e8ea
...
...
@@ -53,7 +53,7 @@ Richard Chamberlain, for the first implementation of textdoc.
# path will be displayed.
import
sys
,
imp
,
os
,
re
,
types
,
inspect
,
__builtin__
,
pkgutil
from
repr
lib
import
Repr
from
repr
import
Repr
from
string
import
expandtabs
,
find
,
join
,
lower
,
split
,
strip
,
rfind
,
rstrip
try
:
from
collections
import
deque
...
...
Lib/repr
lib
.py
→
Lib/repr.py
View file @
2ee0e8ea
File moved
Lib/test/test___all__.py
View file @
2ee0e8ea
...
...
@@ -123,7 +123,7 @@ class AllTest(unittest.TestCase):
self
.
check_all
(
"quopri"
)
self
.
check_all
(
"random"
)
self
.
check_all
(
"re"
)
self
.
check_all
(
"repr
lib
"
)
self
.
check_all
(
"repr"
)
self
.
check_all
(
"rexec"
)
self
.
check_all
(
"rfc822"
)
self
.
check_all
(
"rlcompleter"
)
...
...
Lib/test/test_py3kwarn.py
View file @
2ee0e8ea
...
...
@@ -218,7 +218,7 @@ class TestStdlibRenames(unittest.TestCase):
renames
=
{
'Queue'
:
'queue'
,
'SocketServer'
:
'socketserver'
,
'ConfigParser'
:
'configparser'
,
'repr'
:
'reprlib'
}
}
def
check_rename
(
self
,
module_name
,
new_module_name
):
"""Make sure that:
...
...
Lib/test/test_repr
lib
.py
→
Lib/test/test_repr.py
View file @
2ee0e8ea
...
...
@@ -9,8 +9,8 @@ import shutil
import
unittest
from
test.test_support
import
run_unittest
from
repr
lib
import
repr
as
r
# Don't shadow builtin repr
from
repr
lib
import
Repr
from
repr
import
repr
as
r
# Don't shadow builtin repr
from
repr
import
Repr
def
nestedTuple
(
nesting
):
...
...
Misc/NEWS
View file @
2ee0e8ea
...
...
@@ -76,9 +76,6 @@ Library
ctypes.util.find_library(name) now call this function when name is
'm' or 'c'.
- The repr module has been renamed 'reprlib'. The old name is now
deprecated.
- The statvfs module has been deprecated for removal in Python 3.0.
- The sunaudiodev and SUNAUDIODEV modules have been deprecated for
...
...
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