[sage-support] Build of SageMath version to 7.4.rc1 failed

2016-10-12 Thread Amritanshu Prasad
I switched from master to develop and tried building with "make". I am running Ubuntu 14.04 with a 64-bit Intel i7-5600U processor Error building Sage. The following package(s) may have failed to build (not necessarily during this run of 'make all'): Here is the relevant part of the log file:

Re: [sage-support] How to catch exceptional values (+ in plot3d, one exceptional point ruins the whole plot).

2016-10-12 Thread Jeroen Demeyer
On 2016-10-11 22:07, William Stein wrote: try: return abs(gamma(x+I*y)) except: return 0 That is almost never what you want, since this will also catch things like KeyboardInterrupt. Better use try: ... except Exception: ... -- You received this message because you are