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):
...
@@ -72,13 +72,14 @@ class AllTest(unittest.TestCase):
# rlcompleter needs special consideration; it import readline which
# rlcompleter needs special consideration; it import readline which
# initializes GNU readline which calls setlocale(LC_CTYPE, "")... :-(
# initializes GNU readline which calls setlocale(LC_CTYPE, "")... :-(
import
locale
locale_tuple
=
locale
.
getlocale
(
locale
.
LC_CTYPE
)
try
:
try
:
import
rlcompleter
import
rlcompleter
import
locale
except
ImportError
:
except
ImportError
:
pass
pass
else
:
finally
:
locale
.
setlocale
(
locale
.
LC_CTYPE
,
'C'
)
locale
.
setlocale
(
locale
.
LC_CTYPE
,
locale_tuple
)
ignored
=
[]
ignored
=
[]
failed_imports
=
[]
failed_imports
=
[]
...
...
Misc/ACKS
View file @
6e2db043
...
@@ -224,6 +224,7 @@ Per Cederqvist
...
@@ -224,6 +224,7 @@ Per Cederqvist
Matej Cepl
Matej Cepl
Carl Cerecke
Carl Cerecke
Octavian Cerna
Octavian Cerna
Michael Cetrulo
Dave Chambers
Dave Chambers
Pascal Chambon
Pascal Chambon
John Chandler
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