Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

r""" 

Type ``groups.affine.<tab>`` to access examples 

of groups implemented as affine groups. 

 

TESTS:: 

 

sage: 'absolute_import' in dir(groups.affine) 

False 

""" 

from __future__ import absolute_import 

 

# groups imported here will be available 

# via groups.affine.<tab> 

# 

# Do not use this file for code 

# 

# If you import a new group, then add an 

# entry to the list in the module-level 

# docstring of groups/groups_catalog.py 

 

from .affine_group import AffineGroup as Affine 

from .euclidean_group import EuclideanGroup as Euclidean 

 

# We don't want this to appear in tab completion 

del absolute_import