Commit 29345930 authored by Nikita Nemkin's avatar Nikita Nemkin

Fixes for absolute_import and inop test failures on Windows.

parent 54bdaf56
...@@ -53,7 +53,7 @@ def extended_iglob(pattern): ...@@ -53,7 +53,7 @@ def extended_iglob(pattern):
if path not in seen: if path not in seen:
seen.add(path) seen.add(path)
yield 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: if path not in seen:
seen.add(path) seen.add(path)
yield path yield path
......
...@@ -203,7 +203,7 @@ wide_unicode_character_surrogate2 = 0xDEDC ...@@ -203,7 +203,7 @@ wide_unicode_character_surrogate2 = 0xDEDC
@cython.test_fail_if_path_exists("//SwitchStatNode") @cython.test_fail_if_path_exists("//SwitchStatNode")
@cython.test_assert_path_exists("//PrimaryCmpNode") @cython.test_assert_path_exists("//PrimaryCmpNode")
def m_wide_unicode_literal(Py_UNICODE a): def m_wide_unicode_literal(Py_UCS4 a):
""" """
>>> m_unicode_literal(ord('f')) >>> m_unicode_literal(ord('f'))
1 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment