diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 20:53:16 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-24 20:53:16 (GMT) |
commit | fd2839e1de4e1eac61d982fe3a0d2b4602f3fd3e (patch) | |
tree | 703a09c5db952a8e5c1d2bab4a43f0b6d54ba92e /Tools | |
parent | e4fbb0206d0794b58d096beafd9964340ea26640 (diff) | |
parent | 5b6f0aa71c8f91a970eeb06eb8c636c8c69a569f (diff) | |
download | cpython-fd2839e1de4e1eac61d982fe3a0d2b4602f3fd3e.zip cpython-fd2839e1de4e1eac61d982fe3a0d2b4602f3fd3e.tar.gz cpython-fd2839e1de4e1eac61d982fe3a0d2b4602f3fd3e.tar.bz2 |
Merge 3.5
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/clinic/clinic_test.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Tools/clinic/clinic_test.py b/Tools/clinic/clinic_test.py index cd21000..ac0640c 100644 --- a/Tools/clinic/clinic_test.py +++ b/Tools/clinic/clinic_test.py @@ -3,7 +3,6 @@ # Licensed to the PSF under a contributor agreement. # -import builtins import clinic from clinic import DSLParser import collections @@ -747,15 +746,6 @@ Not at column 0! Nested docstring here, goeth. """.strip(), function.docstring) - def test_parser_regression_special_character_in_parameter_column_of_docstring_first_line(self): - function = self.parse_function(""" -module os -os.stat - path: str -This/used to break Clinic! -""") - self.assertEqual("stat($module, /, path)\n--\n\nThis/used to break Clinic!", function.docstring) - def test_directive(self): c = FakeClinic() parser = DSLParser(c) |