-
-
Notifications
You must be signed in to change notification settings - Fork 488
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4af3c06
commit 5caaa9e
Showing
5 changed files
with
141 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,28 @@ | ||
# Subset of sage.categories.all that is made available by the sage-objects distribution | ||
|
||
from sage.misc.lazy_import import lazy_import | ||
|
||
# Resolve a circular import so that "import sage.categories.all" can succeed | ||
# in initializing the category system. | ||
import sage.structure.category_object # imports sage.categories.category | ||
|
||
# Small part of "from .basic import *": | ||
# Small part of "from sage.categories.basic import *": | ||
from sage.categories.objects import Objects | ||
from sage.categories.sets_cat import Sets, EmptySetError | ||
|
||
|
||
from sage.categories.category import Category | ||
|
||
from sage.categories.category_types import Elements | ||
|
||
from sage.categories.cartesian_product import cartesian_product | ||
|
||
from sage.categories.functor import ForgetfulFunctor, IdentityFunctor | ||
|
||
from sage.categories.homset import Hom, hom, End, end, Homset, HomsetWithBase | ||
|
||
from sage.categories.morphism import Morphism | ||
|
||
from sage.categories.realizations import Realizations | ||
|
||
from sage.categories.sets_with_partial_maps import SetsWithPartialMaps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters