Commit 857251b7 authored by Stefan Behnel's avatar Stefan Behnel

#1896: Disable late includes to avoid breakage of user code.

parent cf70c107
...@@ -155,7 +155,7 @@ class IncludeCode(object): ...@@ -155,7 +155,7 @@ class IncludeCode(object):
if initial: if initial:
self.location = self.INITIAL self.location = self.INITIAL
elif late: elif False and late:
self.location = self.LATE self.location = self.LATE
else: else:
self.location = self.EARLY self.location = self.EARLY
......
...@@ -16,6 +16,9 @@ cimport_alias_subclass ...@@ -16,6 +16,9 @@ cimport_alias_subclass
# PEP-489 is currently disabled # PEP-489 is currently disabled
run.mod__spec__ run.mod__spec__
# Late includes are currently disabled
run.extern_include_order
# CPython regression tests that don't current work: # CPython regression tests that don't current work:
pyregr.test_signal pyregr.test_signal
pyregr.test_capi pyregr.test_capi
......
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