Skip to content

Commit ad202ba

Browse files
author
Matthias Koeppe
committed
Add 'type=standard' in more places
1 parent fd8a32d commit ad202ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/sage/features/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ class CythonFeature(Feature):
870870
....:
871871
....: assert fabs(-1) == 1
872872
....: '''
873-
sage: fabs = CythonFeature("fabs", test_code=fabs_test_code, spkg="gcc", url="https://gnu.org")
873+
sage: fabs = CythonFeature("fabs", test_code=fabs_test_code, spkg="gcc", url="https://gnu.org", type="standard")
874874
sage: fabs.is_present()
875875
FeatureTestResult('fabs', True)
876876

src/sage/groups/braid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
['leftnormalform', 'rightnormalform', 'centralizer', 'supersummitset', 'greatestcommondivisor',
9494
'leastcommonmultiple', 'conjugatingbraid', 'ultrasummitset',
9595
'thurston_type', 'rigidity', 'sliding_circuits'],
96-
feature=PythonModule('sage.libs.braiding', spkg='libbraiding'))
96+
feature=PythonModule('sage.libs.braiding', spkg='libbraiding', type='standard'))
9797

9898

9999
class Braid(FiniteTypeArtinGroupElement):

src/sage/misc/lazy_import.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ def lazy_import(module, names, as_=None, *,
10891089
An example of an import relying on a feature::
10901090
10911091
sage: from sage.features import PythonModule
1092-
sage: lazy_import('ppl', 'equation', feature=PythonModule('ppl', spkg='pplpy'))
1092+
sage: lazy_import('ppl', 'equation', feature=PythonModule('ppl', spkg='pplpy', type='standard'))
10931093
sage: equation
10941094
<built-in function equation>
10951095
sage: lazy_import('PyNormaliz', 'NmzListConeProperties', feature=PythonModule('PyNormaliz', spkg='pynormaliz')) # optional - pynormaliz

0 commit comments

Comments
 (0)