diff options
author | Josh Blum | 2011-04-14 09:37:27 -0700 |
---|---|---|
committer | Josh Blum | 2011-04-14 09:37:27 -0700 |
commit | 4f41cde8c65a76cfd74d40ec24b530ef3fe4a5f4 (patch) | |
tree | 380f91a0eacb2b7dff8f5bb6d138d6acfe474d15 /grc | |
parent | e762abc703e3224b54466685bf51b3fa90ee8edc (diff) | |
download | gnuradio-4f41cde8c65a76cfd74d40ec24b530ef3fe4a5f4.tar.gz gnuradio-4f41cde8c65a76cfd74d40ec24b530ef3fe4a5f4.tar.bz2 gnuradio-4f41cde8c65a76cfd74d40ec24b530ef3fe4a5f4.zip |
grc: remove integrity checks, we wont need them when I'm done
Diffstat (limited to 'grc')
-rw-r--r-- | grc/base/Platform.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/grc/base/Platform.py b/grc/base/Platform.py index 096fdec41..0620cf21b 100644 --- a/grc/base/Platform.py +++ b/grc/base/Platform.py @@ -17,16 +17,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ -#Perform python integrity checks: -# GRC will not work with interpreters that fail the checks below. -# This can fail on interpreters built with special optimizations. -try: - assert False - raise Exception, 'Failed python integrity check: assert not supported' -except AssertionError: pass -if __doc__ is None: - raise Exception, 'Failed python integrity check: __doc__ not supported' - import os import sys from .. base import ParseXML, odict |