1########################################################### 2# Re-bindings for unpickling 3# 4# We want to ensure class 5# sage.modular.congroup_element.CongruenceSubgroupElement still exists, so we 6# can unpickle safely. 7# 8########################################################### 9 10from sage.modular.arithgroup.arithgroup_element import ArithmeticSubgroupElement 11 12CongruenceSubgroupElement = ArithmeticSubgroupElement 13 14