Skip to content

Commit bfd4853

Browse files
Newtech66vincentmacri
authored andcommitted
Changed impl to implementation for some more files
1 parent a094036 commit bfd4853

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/sage/categories/pushout.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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]

src/sage/modules/free_module_element.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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]

0 commit comments

Comments
 (0)