In Dolfin 1.2, its base class has been changed to dolfin.cpp.mesh.CSGPrimitive3D with different algorithm to generate mesh (in my opinion).
You can use the following to generate the unit sphere mesh:
center = Point()
sphere = Sphere(center,1)
mesh = Mesh(sphere,20) # 20 specify the resolution of the mesh