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.
Merge branch 't/17715/asy/asymptoticTerm' into t/17716/asy/asymptotic…
…Expression * t/17715/asy/asymptoticTerm: (2391 commits) add asymptotic_expansions index Updated Sage version to 6.9.beta5 Trac 19906: reviewer comments Trac #19006: transcendental function of polynomials Trac #19006: more flint declarations Trac 19005: two * current -> current + current Trac 19005: on -> over Trac 19005: check that prec is positive 19005: inverse_series -> inverse_series_trunc Trac 19005: a SEEALSO block Trac 19005: fix a doctest Trac 19005: inverse_series over noncommutative rings Trac 19005: is_unit for matrices fix doc mis-formatting in Singleton category Organize a few parts of the reference manual doc: Easier to distinguish heading levels trac #19090: unify documentation trac #19090: Fix doc (links + latex formatting) trac #19109: Tastes and colors ... trac #19109: Broken doctest ...
- Loading branch information
Showing
1,915 changed files
with
91,937 additions
and
56,300 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
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
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
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 @@ | ||
Sage version 6.7, released 2015-05-17 | ||
Sage version 6.9.beta5, released 2015-09-04 |
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
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,2 @@ | ||
/Makefile | ||
/.tox | ||
/MANIFEST |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env python | ||
|
||
# USAGE: | ||
# | ||
# sage-download-file --print-fastest-mirror | ||
# | ||
# Print out the fastest mirror. All further arguments are ignored in | ||
# that case. | ||
# | ||
# sage-download-file [--quiet] url-or-tarball [destination] | ||
# | ||
# The single mandatory argument can be a http:// url or a tarball | ||
# filename. In the latter case, the tarball is downloaded from the | ||
# mirror network and its checksum is verified. | ||
# | ||
# If the destination is not specified: | ||
# * a url will be downloaded and the content written to stdout | ||
# * a tarball will be saved under {SAGE_DISTFILES} | ||
|
||
try: | ||
import sage_bootstrap | ||
except ImportError: | ||
import os, sys | ||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) | ||
import sage_bootstrap | ||
|
||
from sage_bootstrap.cmdline import SageDownloadFileApplication | ||
SageDownloadFileApplication().run() |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# sage-logger COMMAND LOGFILE | ||
# | ||
# Evaluate shell command COMMAND while logging stdout and stderr to | ||
# LOGFILE. If either the command or the logging failed, return a | ||
# non-zero exit status. | ||
# | ||
# AUTHOR: | ||
# | ||
# - Jeroen Demeyer (2015-07-26): initial version based on old pipestatus | ||
# script (#18953) | ||
# | ||
#***************************************************************************** | ||
# Copyright (C) 2015 Jeroen Demeyer <jdemeyer@cage.ugent.be> | ||
# | ||
# Distributed under the terms of the GNU General Public License (GPL) | ||
# 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/ | ||
#***************************************************************************** | ||
|
||
cmd="$1" | ||
logfile="$2" | ||
logdir=`dirname "$logfile"` | ||
|
||
mkdir -p "$logdir" | ||
|
||
# Redirect stdout and stderr to a subprocess running tee. | ||
# We trap SIGINT such that SIGINT interrupts the main process being | ||
# run, not the logging. | ||
( exec 2>&1; eval "$cmd" ) | ( trap '' SIGINT; tee -a "$logfile" ) | ||
|
||
pipestatus=(${PIPESTATUS[*]}) | ||
|
||
if [ ${pipestatus[1]} -ne 0 ]; then | ||
exit ${pipestatus[1]} | ||
else | ||
exit ${pipestatus[0]} | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/usr/bin/env python | ||
|
||
# Script to manage third-party tarballs. | ||
# | ||
# Usage: | ||
# | ||
# * Print the configuration | ||
# | ||
# $ sage-package config | ||
# Configuration: | ||
# * log = info | ||
# * interactive = True | ||
# | ||
# * Print a list of all available packages | ||
# | ||
# $ sage-package list | sort | ||
# 4ti2 | ||
# arb | ||
# atlas | ||
# autotools | ||
# [...] | ||
# zn_poly | ||
# | ||
# * Find the package name given a tarball filename | ||
# | ||
# $ sage-package name pari-2.8-1564-gdeac36e.tar.gz | ||
# pari | ||
# | ||
# * Find the tarball filename given a package name | ||
# | ||
# $ sage-package tarball pari | ||
# pari-2.8-1564-gdeac36e.tar.gz | ||
|
||
try: | ||
import sage_bootstrap | ||
except ImportError: | ||
import os, sys | ||
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) | ||
import sage_bootstrap | ||
|
||
from sage_bootstrap.cmdline import SagePkgApplication | ||
SagePkgApplication().run() |
Oops, something went wrong.