This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #29029: some cleaning in power series pyx files
some doc details and removing unused imports URL: https://trac.sagemath.org/29029 Reported by: chapoton Ticket author(s): Frédéric Chapoton Reviewer(s): Jori Mäntysalo
- Loading branch information
Showing
4 changed files
with
51 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=fef64fcd9915ea4f881bc5cfeecb8b3864bc555f | ||
md5=0b23947f22228ef6d5d1143a906cd4a6 | ||
cksum=844195685 | ||
sha1=3506adf8c82496e255cfdbbdcf29834dfe304972 | ||
md5=5025184149d48727710a67a8cff91387 | ||
cksum=914476400 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7140d0e7bb897e008d315fdcd371c11528aa70d3 | ||
c17110f970d3b0d8b0857cd02edd96b8f03430ef |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,23 +59,21 @@ AUTHORS: | |
""" | ||
|
||
#***************************************************************************** | ||
# **************************************************************************** | ||
# Copyright (C) 2013-2017 Peter Bruin <[email protected]> | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 2 of the License, or | ||
# (at your option) any later version. | ||
# http://www.gnu.org/licenses/ | ||
#***************************************************************************** | ||
# https://www.gnu.org/licenses/ | ||
# **************************************************************************** | ||
|
||
from cypari2.gen cimport Gen as pari_gen | ||
from cypari2.pari_instance cimport get_var | ||
from cypari2.paridecl cimport gel, typ, lg, valp, varn, t_POL, t_SER, t_RFRAC, t_VEC | ||
from sage.libs.pari.all import pari | ||
|
||
from sage.misc.superseded import deprecated_function_alias | ||
|
||
from sage.rings.polynomial.polynomial_element cimport Polynomial | ||
from sage.rings.power_series_ring_element cimport PowerSeries | ||
from sage.structure.element cimport Element, RingElement | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters