diff --git a/sympy/__init__.py b/sympy/__init__.py
index 5f2a78a..bb1968f 100644
--- a/sympy/__init__.py
+++ b/sympy/__init__.py
@@ -33,6 +33,7 @@ def __sympy_debug():
 from geometry import *
 from utilities import *
 from integrals import *
+from abstractalgebra import *
 # This module is slow to import:
 #from physics import units
 from plotting import Plot, textplot
diff --git a/sympy/abstractalgebra/finitefield.py b/sympy/abstractalgebra/finitefield.py
index a99ff37..65a5186 100644
--- a/sympy/abstractalgebra/finitefield.py
+++ b/sympy/abstractalgebra/finitefield.py
@@ -20,9 +20,10 @@ def elements(self):
         """Returns the elements of the finite field
 
         Examples:
+	>>> from sympy.abstractalgebra.finitefield import  PrimeField
         >>> gf2=PrimeField(2)
         >>> print gf2.elements()
-        [0,1]
+        [0, 1]
         """
 
         elements = range(0, self.p, 1)
@@ -32,6 +33,7 @@ def add(self,x1,x2):
         """Returns the addition of the two arguements in modulo p
 
         Examples:
+	>>> from sympy.abstractalgebra.finitefield import PrimeField
         >>> gf7=PrimeField(7)
         >>> gf7.add(4,5)
         2
@@ -46,6 +48,7 @@ def additive_inverse(self,x):
         """Returns the additive inverse of the element
 
         Examples:
+	>>> from sympy.abstractalgebra.finitefield import PrimeField
         >>> gf7=PrimeField(7)
         >>> gf7.additive_inverse(5)
         2
@@ -56,6 +59,7 @@ def multiply(self,x1,x2):
         """Returns the multiplication of arguements in modulo p
 
         Examples:
+	>>> from sympy.abstractalgebra.finitefield import PrimeField
         >>> gf7=PrimeField(7)
         >>> gf7.multiply(4,5)
         6
@@ -73,6 +77,7 @@ def multiplicative_inverse(self,x):
         Inverse is y, such that xy+qp=1 iff gcd of x and p is 1.
 
         Examples:
+	>>> from sympy.abstractalgebra.finitefield import PrimeField
         >>> gf7=PrimeField(7)
         >>> gf7.multiplicative_inverse(4)
         2
@@ -88,6 +93,7 @@ def power(self,x,power):
         Uses repeated squaring
 
         Examples:
+	>>> from sympy.abstractalgebra.finitefield import PrimeField
         >>> gf7=PrimeField(7)
         >>> gf7.power(3,3)
         6
