File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3529,11 +3529,11 @@ def merge(self, other):
35293529 # integers to encode degrees of extensions.
35303530 from sage .rings .integer import Integer
35313531 kwds_self = dict (self .kwds .items ())
3532- if 'impl ' in kwds_self :
3533- del kwds_self ['impl ' ]
3532+ if 'implementation ' in kwds_self :
3533+ del kwds_self ['implementation ' ]
35343534 kwds_other = dict (other .kwds .items ())
3535- if 'impl ' in kwds_other :
3536- del kwds_other ['impl ' ]
3535+ if 'implementation ' in kwds_other :
3536+ del kwds_other ['implementation ' ]
35373537 if (isinstance (self .polys [0 ], Integer )
35383538 and isinstance (other .polys [0 ], Integer )
35393539 and self .embeddings == other .embeddings == [None ]
Original file line number Diff line number Diff line change @@ -1085,7 +1085,7 @@ cdef class FreeModuleElement(Vector): # abstract base class
10851085 Create the multiplication table of `GF(4)` using GP::
10861086
10871087 sage: # needs sage.libs.pari
1088- sage: k.<a> = GF(4, impl=' pari_ffelt' )
1088+ sage: k.<a> = GF(4, implementation=" pari_ffelt" )
10891089 sage: v = gp(vector(list(k)))
10901090 sage: v
10911091 [0, 1, a, a + 1]
You can’t perform that action at this time.
0 commit comments