Skip to content

Commit

Permalink
Trac 18157: adding reference to the trac ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
videlec committed Apr 17, 2015
1 parent a48cd06 commit 60fcedc
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions src/sage/structure/coerce_actions.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ cdef class GenericAction(Action):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the domains,
for otherwise they could be garbage collected, giving rise to
random errors. ::
random errors (see :trac:`18157`). ::
sage: M = MatrixSpace(ZZ,2)
sage: sage.structure.coerce_actions.ActedUponAction(M, Cusps, True)
Expand Down Expand Up @@ -103,7 +103,7 @@ cdef class GenericAction(Action):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the domains, for
otherwise they could be garbage collected, giving rise to random
errors. ::
errors (see :trac:`18157`). ::
sage: M = MatrixSpace(ZZ,2)
Expand Down Expand Up @@ -180,7 +180,7 @@ def detect_element_action(Parent X, Y, bint X_on_left, X_el=None, Y_el=None):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the domains,
for otherwise they could be garbage collected, giving rise to
random errors. ::
random errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import detect_element_action
sage: ZZx = ZZ['x']
Expand Down Expand Up @@ -293,7 +293,8 @@ cdef class ModuleAction(Action):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the domains,
for otherwise they could be garbage collected, giving rise to
random errors. ::
random errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import LeftModuleAction
sage: ZZx = ZZ['x']
Expand Down Expand Up @@ -387,7 +388,7 @@ cdef class ModuleAction(Action):
Note that coerce actions should only be used inside of the
coercion model. For this test, we need to strongly reference the
domains, for otherwise they could be garbage collected, giving rise to
random errors. ::
random errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import LeftModuleAction, RightModuleAction
sage: ZZx = ZZ['x']
Expand All @@ -413,7 +414,7 @@ cdef class ModuleAction(Action):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the domains,
for otherwise they could be garbage collected, giving rise to
random errors. ::
random errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import LeftModuleAction
sage: ZZxyz = ZZ['x,y,z']
Expand All @@ -434,7 +435,7 @@ cdef class ModuleAction(Action):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the domains,
for otherwise they could be garbage collected, giving rise to
random errors. ::
random errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import LeftModuleAction
sage: ZZxyz = ZZ['x,y,z']
Expand All @@ -451,7 +452,7 @@ cdef class ModuleAction(Action):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the domains, for
otherwise they could be garbage collected, giving rise to random
errors. ::
errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import RightModuleAction
Expand Down Expand Up @@ -548,7 +549,7 @@ cdef class LeftModuleAction(ModuleAction):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the domains,
for otherwise they could be garbage collected, giving rise to
random errors. ::
random errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import LeftModuleAction
sage: R.<x> = QQ['x']
Expand Down Expand Up @@ -585,7 +586,7 @@ cdef class RightModuleAction(ModuleAction):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the domains,
for otherwise they could be garbage collected, giving rise to
random errors. ::
random errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import RightModuleAction
sage: R.<x> = QQ['x']
Expand Down Expand Up @@ -666,7 +667,7 @@ cdef class IntegerMulAction(Action):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the field
``GF(101)``, for otherwise it could be garbage collected, giving rise
to random errors. ::
random errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import IntegerMulAction
sage: GF101 = GF(101)
Expand Down Expand Up @@ -730,7 +731,7 @@ cdef class IntegerMulAction(Action):
Note that coerce actions should only be used inside of the coercion
model. For this test, we need to strongly reference the field
``GF(5)``, for otherwise it could be garbage collected, giving rise
to random errors. ::
random errors (see :trac:`18157`). ::
sage: from sage.structure.coerce_actions import IntegerMulAction
sage: GF5 = GF(5)
Expand Down

0 comments on commit 60fcedc

Please sign in to comment.