Commit b1704d61 authored by Stefan Behnel's avatar Stefan Behnel

GH-2564: Enable "binding" directive by default.

parent 1bc86b57
...@@ -169,6 +169,7 @@ def get_directive_defaults(): ...@@ -169,6 +169,7 @@ def get_directive_defaults():
# Declare compiler directives # Declare compiler directives
_directive_defaults = { _directive_defaults = {
'binding': True,
'boundscheck' : True, 'boundscheck' : True,
'nonecheck' : False, 'nonecheck' : False,
'initializedcheck' : True, 'initializedcheck' : True,
...@@ -237,8 +238,6 @@ _directive_defaults = { ...@@ -237,8 +238,6 @@ _directive_defaults = {
'test_fail_if_path_exists' : [], 'test_fail_if_path_exists' : [],
# experimental, subject to change # experimental, subject to change
'binding': None,
'formal_grammar': False, 'formal_grammar': False,
} }
......
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