Skip to content

Commit 273296d

Browse files
committed
suggested details
1 parent a0c9189 commit 273296d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/sage/interfaces/gap3.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
Sage assumes that the command ``gap3`` is in your ``PATH``. If this is not
4646
the case, then you can start GAP3 using the following command::
4747
48-
sage: gap3 = Gap3(command='/usr/local/bin/gap3') #not tested
48+
sage: gap3 = Gap3(command='/usr/local/bin/gap3') # not tested
4949
5050
Functionality and Examples
5151
--------------------------
@@ -114,15 +114,15 @@
114114
115115
::
116116
117-
sage: gap3.interact() #not tested
117+
sage: gap3.interact() # not tested
118118
119119
--> Switching to Gap3 <--
120120
121121
gap3:
122122
123123
#. You can start a new GAP3 session as follows::
124124
125-
sage: gap3.console() #not tested
125+
sage: gap3.console() # not tested
126126
127127
######## Lehrstuhl D fuer Mathematik
128128
### #### RWTH Aachen
@@ -150,7 +150,7 @@
150150
151151
#. The interface also has access to the GAP3 help system::
152152
153-
sage: gap3.help('help', pager=False) #not tested
153+
sage: gap3.help('help', pager=False) # not tested
154154
Help _______________________________________________________...
155155
156156
This section describes together with the following sections the GAP
@@ -521,13 +521,13 @@ def cputime(self, t=None):
521521
522522
sage: # optional - gap3
523523
sage: t = gap3.cputime()
524-
sage: t #random
524+
sage: t # random
525525
0.02
526526
sage: gap3.SymmetricGroup(5).Size()
527527
120
528-
sage: gap3.cputime() #random
528+
sage: gap3.cputime() # random
529529
0.14999999999999999
530-
sage: gap3.cputime(t) #random
530+
sage: gap3.cputime(t) # random
531531
0.13
532532
"""
533533
if t is not None:
@@ -541,7 +541,7 @@ def console(self):
541541
542542
EXAMPLES::
543543
544-
sage: gap3.console() #not tested
544+
sage: gap3.console() # not tested
545545
546546
######## Lehrstuhl D fuer Mathematik
547547
### #### RWTH Aachen
@@ -886,7 +886,7 @@ def gap3_console():
886886
887887
EXAMPLES::
888888
889-
sage: gap3.console() #not tested
889+
sage: gap3.console() # not tested
890890
891891
######## Lehrstuhl D fuer Mathematik
892892
### #### RWTH Aachen

0 commit comments

Comments
 (0)