Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
44188cf6
Commit
44188cf6
authored
May 04, 2013
by
scoder
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #221 from nnemkin/windows_test_fixes
Fixes for absolute_import and inop test failures on Windows.
parents
54bdaf56
29345930
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Cython/Build/Dependencies.py
Cython/Build/Dependencies.py
+1
-1
tests/run/inop.pyx
tests/run/inop.pyx
+1
-1
No files found.
Cython/Build/Dependencies.py
View file @
44188cf6
...
...
@@ -53,7 +53,7 @@ def extended_iglob(pattern):
if
path
not
in
seen
:
seen
.
add
(
path
)
yield
path
for
path
in
extended_iglob
(
join_path
(
root
,
'*'
,
'**
'
,
rest
)):
for
path
in
extended_iglob
(
join_path
(
root
,
'*'
,
'**
/'
+
rest
)):
if
path
not
in
seen
:
seen
.
add
(
path
)
yield
path
...
...
tests/run/inop.pyx
View file @
44188cf6
...
...
@@ -203,7 +203,7 @@ wide_unicode_character_surrogate2 = 0xDEDC
@
cython
.
test_fail_if_path_exists
(
"//SwitchStatNode"
)
@
cython
.
test_assert_path_exists
(
"//PrimaryCmpNode"
)
def
m_wide_unicode_literal
(
Py_U
NICODE
a
):
def
m_wide_unicode_literal
(
Py_U
CS4
a
):
"""
>>> m_unicode_literal(ord('f'))
1
...
...
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