# HG changeset patch
# User wstein@gmail.com
# Date 1239155523 14400
# Node ID 3775545bbccf16d39d89ee809f26d4b163fae269
# Parent c4f749bc9a5791be0305e0d5ccd974388f1db6fb
trac 5709 -- singular interface -- use a smaller file size cutoff on solaris
diff -r c4f749bc9a57 -r 3775545bbccf sage/interfaces/singular.py
a
|
b
|
|
267 | 267 | # http://www.gnu.org/licenses/ |
268 | 268 | #***************************************************************************** |
269 | 269 | |
270 | | import re |
| 270 | import os, re |
271 | 271 | |
272 | 272 | from expect import Expect, ExpectElement, FunctionElement, ExpectFunction |
273 | 273 | |
… |
… |
|
316 | 316 | restart_on_ctrlc = True, |
317 | 317 | verbose_start = False, |
318 | 318 | logfile = logfile, |
319 | | eval_using_file_cutoff=1000) |
| 319 | eval_using_file_cutoff=100 if os.uname()[0]=="SunOS" else 1000) |
320 | 320 | self.__libs = [] |
321 | 321 | self._prompt_wait = prompt |
322 | 322 | self.__to_clear = [] # list of variable names that need to be cleared. |