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
807b80d4
Commit
807b80d4
authored
Apr 15, 2015
by
doko@ubuntu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- #22980: fix typo in Lib/test/test_sysconfig.py triplet test
parent
092f616a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Lib/test/test_sysconfig.py
Lib/test/test_sysconfig.py
+1
-1
No files found.
Lib/test/test_sysconfig.py
View file @
807b80d4
...
...
@@ -396,7 +396,7 @@ class TestSysConfig(unittest.TestCase):
suffix
=
sysconfig
.
get_config_var
(
'EXT_SUFFIX'
)
if
re
.
match
(
'(aarch64|arm|mips|ppc|powerpc|s390|sparc)'
,
machine
):
self
.
assertTrue
(
'linux'
in
suffix
,
suffix
)
if
re
.
match
(
'(i[3-6]86|x86_64)$'
,
'x86_64'
):
if
re
.
match
(
'(i[3-6]86|x86_64)$'
,
machine
):
if
ctypes
.
sizeof
(
ctypes
.
c_char_p
())
==
4
:
self
.
assertTrue
(
suffix
.
endswith
(
'i386-linux-gnu.so'
)
\
or
suffix
.
endswith
(
'x86_64-linux-gnux32.so'
),
...
...
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