diff options
author | Tim Peters <tim.peters@gmail.com> | 2007-01-30 03:03:46 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2007-01-30 03:03:46 +0000 |
commit | f733abb7831d6566cb0fccd0550d58ec3b7f05a4 (patch) | |
tree | 4466e9eccc1b441e60841c16d48915f20216178e /Lib/test/test_resource.py | |
parent | 15c1fe5047f94942f1e784ac7614f9f5370adb47 (diff) | |
download | cpython-git-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.tar.gz |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_resource.py')
-rw-r--r-- | Lib/test/test_resource.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_resource.py b/Lib/test/test_resource.py index 5c9b929a9e..d1fd230ba8 100644 --- a/Lib/test/test_resource.py +++ b/Lib/test/test_resource.py @@ -15,7 +15,7 @@ class ResourceTest(unittest.TestCase): self.assertRaises(TypeError, resource.setrlimit, 42, 42, 42) def test_fsize_ismax(self): - + try: (cur, max) = resource.getrlimit(resource.RLIMIT_FSIZE) except AttributeError: @@ -39,7 +39,7 @@ class ResourceTest(unittest.TestCase): # versions of Python were terminated by an uncaught SIGXFSZ, but # pythonrun.c has been fixed to ignore that exception. If so, the # write() should return EFBIG when the limit is exceeded. - + # At least one platform has an unlimited RLIMIT_FSIZE and attempts # to change it raise ValueError instead. try: |