Skip to content

Commit

Permalink
Point to github's issue tracker (part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev committed Mar 8, 2014
1 parent 4a8609e commit d78d0b3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
9 changes: 6 additions & 3 deletions doc/man/isympy.1
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,16 @@ Example: isympy -p no
.TP
\*(T<\fB\-t \fR\*(T>\fITYPE\fR, \*(T<\fB\-\-types=\fR\*(T>\fITYPE\fR
Setup the ground types for the polys. By default, gmpy ground types
are used if gmpy is installed, otherwise it falls back to python
are used if gmpy2 or gmpy is installed, otherwise it falls back to python
ground types, which are a little bit slower. You can manually
choose python ground types even if gmpy is installed (e.g., for testing purposes).

Note that sympy ground types are not supported, and should be used
only for experimental purposes.

Note that the gmpy1 ground type is primarily intended for testing; it the
use of gmpy even if gmpy2 is available.

This is the same as setting the environment variable
SYMPY_GROUND_TYPES to the given ground type (e.g.,
SYMPY_GROUND_TYPES='gmpy')
Expand All @@ -94,7 +97,7 @@ sympy.polys.domains.GROUND_TYPES inside the isympy shell itself.
Example: isympy -t python

\fITYPE\fR must be one of 'gmpy',
\&'python' or 'sympy'.
\&'gmpy1' or 'python'.
.TP
\*(T<\fB\-o \fR\*(T>\fIORDER\fR, \*(T<\fB\-\-order=\fR\*(T>\fIORDER\fR
Setup the ordering of terms for printing. The default is lex, which
Expand Down Expand Up @@ -178,7 +181,7 @@ Print isympy version information and exit.
Saves the history of commands when using the python
shell as backend.
.SH BUGS
The upstreams BTS can be found at \(lahttp://code.google.com/p/sympy/issues/list\(ra
The upstreams BTS can be found at \(lahttps://github.com/sympy/sympy/issues\(ra
Please report all bugs that you find in there, this will help improve
the overall quality of SymPy.
.SH "SEE ALSO"
Expand Down
2 changes: 1 addition & 1 deletion doc/man/isympy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ this will generate isympy.1 in the current directory. -->
<!-- Or use this section to tell about upstream BTS. -->
<title>BUGS</title>
<para>The upstreams <acronym>BTS</acronym> can be found at <ulink
url="http://code.google.com/p/sympy/issues/list">http://code.google.com/p/sympy/issues/list</ulink>
url="https://github.com/sympy/sympy/issues">https://github.com/sympy/sympy/issues</ulink>
Please report all bugs that you find in there, this will help improve
the overall quality of SymPy.</para>
</refsect1>
Expand Down
2 changes: 1 addition & 1 deletion doc/src/guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ Please read our excellent `SymPy Patches Tutorial
wiki for a guide on how to write patches to SymPy, how to work with Git,
and how to make your life easier as you get started with SymPy.

.. _issues: http://code.google.com/p/sympy/issues/list
.. _issues: https://github.com/sympy/sympy/issues
.. _mailinglist: http://groups.google.com/group/sympy

Improving the docs
Expand Down
2 changes: 1 addition & 1 deletion doc/src/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,5 @@ an `issue ticket`_.

.. _downloads site: https://code.google.com/p/sympy/downloads/list
.. _#sympy: irc://irc.freenode.net/sympy
.. _issue ticket: http://code.google.com/p/sympy/issues/list
.. _issue ticket: https://github.com/sympy/sympy/issues
.. _mailing list: http://groups.google.com/group/sympy
2 changes: 1 addition & 1 deletion doc/src/modules/integrals/integrals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ The class `Integral` represents an unevaluated integral and has some methods tha

TODO and Bugs
-------------
There are still lots of functions that SymPy does not know how to integrate. For bugs related to this module, see http://code.google.com/p/sympy/issues/list?q=label:Integration
There are still lots of functions that SymPy does not know how to integrate. For bugs related to this module, see https://github.com/sympy/sympy/issues?labels=Integration

Numeric Integrals
=================
Expand Down
2 changes: 1 addition & 1 deletion sympy/utilities/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def __init__(self, value=None, feature=None, last_supported_version=None,
self.fullMessage += "Use %s instead. " % useinstead
if issue:
self.fullMessage += ("See "
"http://code.google.com/p/sympy/issues/detail?id=%d for more "
"https://github.com/sympy/sympy/issues/%d for more "
"info. ") % issue

if value:
Expand Down

0 comments on commit d78d0b3

Please sign in to comment.