Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Nov 17, 2021
2 parents 58221f0 + f3ee49b commit 433cb33
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/sage/all__sagemath_objects.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
import os
import sys
import operator
import math

import warnings

# TODO: More to be moved from all.py

import os
Expand All @@ -14,9 +21,20 @@

from sage.misc.all__sagemath_objects import *
from sage.structure.all import *
from sage.arith.power import generic_power as power
from sage.categories.all__sagemath_objects import *

from sage.cpython.all import *

from cysignals.alarm import alarm, cancel_alarm

from copy import copy, deepcopy

true = True
false = False


# For doctesting. These are overwritten later

Integer = int
RealNumber = float

0 comments on commit 433cb33

Please sign in to comment.