Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/all__sagemath_objects.py: Add some more imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Nov 16, 2021
1 parent 743e004 commit a72ee3b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/sage/all__sagemath_objects.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,28 @@
import os
import sys
import operator
import math

import warnings

# TODO: More to be moved from all.py

# This import also sets up the interrupt handler
from cysignals.signals import (AlarmInterrupt, SignalError,
sig_on_reset as sig_on_count)

from time import sleep

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

0 comments on commit a72ee3b

Please sign in to comment.