From 4f41cde8c65a76cfd74d40ec24b530ef3fe4a5f4 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Thu, 14 Apr 2011 09:37:27 -0700 Subject: grc: remove integrity checks, we wont need them when I'm done --- grc/base/Platform.py | 10 ---------- 1 file changed, 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 -- cgit