Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/modular/congroup_element.py
4045 views
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
10
from sage.modular.arithgroup.arithgroup_element import ArithmeticSubgroupElement
11
12
CongruenceSubgroupElement = ArithmeticSubgroupElement
13
14