Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac #15705: reviewer's patch
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanncohen committed Mar 25, 2014
1 parent 4ae59be commit 813a807
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sage/rings/power_series_ring_element.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ from sage.rings.finite_rings.integer_mod_ring import IntegerModRing
from sage.libs.pari.all import pari
from sage.misc.functional import sqrt, log
from sage.rings.arith import integer_ceil as ceil
from sage.misc.superseded import deprecated_function_alias

from sage.categories.fields import Fields
_Fields = Fields()
Expand Down Expand Up @@ -1792,8 +1793,8 @@ cdef class PowerSeries(AlgebraElement):
"""
return self.parent()([self[i] / arith.factorial(i) for i in range(self.degree()+1)])

ogf = deprecated_function_alias(15705, egf_to_ogf)
egf = deprecated_function_alias(15705, ogf_to_egf)
ogf = deprecated_function_alias(15705, egf_to_ogf)
egf = deprecated_function_alias(15705, ogf_to_egf)

def _pari_(self):
"""
Expand Down

0 comments on commit 813a807

Please sign in to comment.