references to clear_mapper still exist

Issue #826 resolved
Former user created an issue

In orm.mapper.py, the following reference to clear_mapper still exists: raise exceptions.ArgumentError("Class '%s' already has a primary mapper defined with entity name '%s'. Use non_primary=True to create a non primary Mapper, or to create a new primary mapper, remove this mapper first via sqlalchemy.orm.clear_mapper(mapper), or preferably sqlalchemy.orm.clear_mappers() to clear all mappers." % (self.class_, self.entity_name))

This causes confusion on the part of the user when trying to load a function that no longer exists!