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
6e2db043
Commit
6e2db043
authored
Nov 02, 2014
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Plain Diff
#22751: merge with 3.4.
parents
740e1dcd
8b23f5cc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
Lib/test/test___all__.py
Lib/test/test___all__.py
+4
-3
Misc/ACKS
Misc/ACKS
+1
-0
No files found.
Lib/test/test___all__.py
View file @
6e2db043
...
...
@@ -72,13 +72,14 @@ class AllTest(unittest.TestCase):
# rlcompleter needs special consideration; it import readline which
# initializes GNU readline which calls setlocale(LC_CTYPE, "")... :-(
import
locale
locale_tuple
=
locale
.
getlocale
(
locale
.
LC_CTYPE
)
try
:
import
rlcompleter
import
locale
except
ImportError
:
pass
else
:
locale
.
setlocale
(
locale
.
LC_CTYPE
,
'C'
)
finally
:
locale
.
setlocale
(
locale
.
LC_CTYPE
,
locale_tuple
)
ignored
=
[]
failed_imports
=
[]
...
...
Misc/ACKS
View file @
6e2db043
...
...
@@ -224,6 +224,7 @@ Per Cederqvist
Matej Cepl
Carl Cerecke
Octavian Cerna
Michael Cetrulo
Dave Chambers
Pascal Chambon
John Chandler
...
...
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