From: Ronald Oussoren Date: Tue, 16 Jul 2013 06:32:05 +0000 (+0200) Subject: Also remove a (broken) leaker test for the code removed in issue #18393. X-Git-Tag: v3.4.0a1~193 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e6f2175afb68be240be96368f99a92329baf4e15;p=thirdparty%2FPython%2Fcpython.git Also remove a (broken) leaker test for the code removed in issue #18393. --- diff --git a/Lib/test/leakers/test_gestalt.py b/Lib/test/leakers/test_gestalt.py deleted file mode 100644 index e0081c1fc510..000000000000 --- a/Lib/test/leakers/test_gestalt.py +++ /dev/null @@ -1,14 +0,0 @@ -import sys - -if sys.platform != 'darwin': - raise ValueError("This test only leaks on Mac OS X") - -def leak(): - # taken from platform._mac_ver_lookup() - from gestalt import gestalt - import MacOS - - try: - gestalt('sysu') - except MacOS.Error: - pass