]> granicus.if.org Git - python/commitdiff
fix parsing reST with code or code-block directives (closes #23063)
authorBenjamin Peterson <benjamin@python.org>
Thu, 15 Jan 2015 04:56:35 +0000 (23:56 -0500)
committerBenjamin Peterson <benjamin@python.org>
Thu, 15 Jan 2015 04:56:35 +0000 (23:56 -0500)
Patch by Marc Abramowitz.

Lib/distutils/command/check.py
Lib/distutils/tests/test_check.py
Misc/NEWS

index 22b9349dd6057ffff93e53b652d49fe35c6a2302..7ebe707cff4963db91990ed7d73f339e10ff6e80 100644 (file)
@@ -122,7 +122,7 @@ class check(Command):
         """Returns warnings when the provided data doesn't compile."""
         source_path = StringIO()
         parser = Parser()
-        settings = frontend.OptionParser().get_default_values()
+        settings = frontend.OptionParser(components=(Parser,)).get_default_values()
         settings.tab_width = 4
         settings.pep_references = None
         settings.rfc_references = None
@@ -138,8 +138,8 @@ class check(Command):
         document.note_source(source_path, -1)
         try:
             parser.parse(data, document)
-        except AttributeError:
-            reporter.messages.append((-1, 'Could not finish the parsing.',
-                                      '', {}))
+        except AttributeError as e:
+            reporter.messages.append(
+                (-1, 'Could not finish the parsing: %s.' % e, '', {}))
 
         return reporter.messages
index 601b68686be26ac17c8bf6d9e39307a3431bc779..959fa9085cf548048b226f827dea23c5b0fa5cef 100644 (file)
@@ -1,4 +1,5 @@
 """Tests for distutils.command.check."""
+import textwrap
 import unittest
 from test.support import run_unittest
 
@@ -92,6 +93,36 @@ class CheckTestCase(support.LoggingSilencer,
         cmd = self._run(metadata, strict=1, restructuredtext=1)
         self.assertEqual(cmd._warnings, 0)
 
+    @unittest.skipUnless(HAS_DOCUTILS, "won't test without docutils")
+    def test_check_restructuredtext_with_syntax_highlight(self):
+        # Don't fail if there is a `code` or `code-block` directive
+
+        example_rst_docs = []
+        example_rst_docs.append(textwrap.dedent("""\
+            Here's some code:
+
+            .. code:: python
+
+                def foo():
+                    pass
+            """))
+        example_rst_docs.append(textwrap.dedent("""\
+            Here's some code:
+
+            .. code-block:: python
+
+                def foo():
+                    pass
+            """))
+
+        for rest_with_code in example_rst_docs:
+            pkg_info, dist = self.create_dist(long_description=rest_with_code)
+            cmd = check(dist)
+            cmd.check_restructuredtext()
+            self.assertEqual(cmd._warnings, 0)
+            msgs = cmd._check_rst_data(rest_with_code)
+            self.assertEqual(len(msgs), 0)
+
     def test_check_all(self):
 
         metadata = {'url': 'xxx', 'author': 'xxx'}
index 96e34e496c533a2478e56f8439c7b9a1cf300ab1..4127269741169726e4ae66fcd09b085efca129ab 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #23063: In the disutils' check command, fix parsing of reST with code or
+  code-block directives.
+
 - Issue #23209, #23225: selectors.BaseSelector.close() now clears its internal
   reference to the selector mapping to break a reference cycle. Initial patch
   written by Martin Richard.