Skip to content
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.

change doctest for mathjax_macros #197

Merged
merged 2 commits into from Feb 3, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions Changes
@@ -1,3 +1,7 @@
0.10.8.2 Feb 03 2014

- Change doctest (#197)

0.10.8.1 Feb 03 2014

- Fix a bug in import of latex macros for mathjax (#195)
Expand Down
21 changes: 2 additions & 19 deletions sagenb/misc/misc.py
Expand Up @@ -7,25 +7,8 @@
Check that github issue #195 is fixed::

sage: from sagenb.misc.misc import mathjax_macros
sage: print mathjax_macros
['ZZ: "\\\\Bold{Z}"',
'NN: "\\\\Bold{N}"',
'RR: "\\\\Bold{R}"',
'CC: "\\\\Bold{C}"',
'QQ: "\\\\Bold{Q}"',
'QQbar: "\\\\overline{\\\\QQ}"',
'GF: ["\\\\Bold{F}_{#1}",1]',
'Zp: ["\\\\ZZ_{#1}",1]',
'Qp: ["\\\\QQ_{#1}",1]',
'Zmod: ["\\\\ZZ/#1\\\\ZZ",1]',
'CDF: "\\\\Bold{C}"',
'CIF: "\\\\Bold{C}"',
'CLF: "\\\\Bold{C}"',
'RDF: "\\\\Bold{R}"',
'RIF: "\\\\Bold{I} \\\\Bold{R}"',
'RLF: "\\\\Bold{R}"',
'CFF: "\\\\Bold{CFF}"',
'Bold: ["\\\\mathbf{#1}",1]']
sage: type(mathjax_macros)
<type 'list'>

"""

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -44,7 +44,7 @@ def all_files(dir, prefix):
distutils.log.set_threshold(distutils.log.DEBUG)

code = setup(name = 'sagenb',
version = '0.10.8.1',
version = '0.10.8.2',
description = 'The Sage Notebook',
license = 'GNU General Public License (GPL) v3+',
author = 'William Stein et al.',
Expand Down