diff options
| -rw-r--r-- | Doc/library/pprint.rst | 2 | ||||
| -rw-r--r-- | Lib/test/test_pprint.py | 11 | ||||
| -rw-r--r-- | Mac/Makefile.in | 2 | ||||
| -rw-r--r-- | PCbuild/_ctypes.vcproj | 2 | 
4 files changed, 14 insertions, 3 deletions
diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst index 940e4c4b0c..dd85746ac4 100644 --- a/Doc/library/pprint.rst +++ b/Doc/library/pprint.rst @@ -50,7 +50,7 @@ The :mod:`pprint` module defines one class:        >>> stuff.insert(0, stuff[:])        >>> pp = pprint.PrettyPrinter(indent=4)        >>> pp.pprint(stuff) -      [   [   'spam', 'eggs', 'lumberjack', 'knights', 'ni'], +      [   ['spam', 'eggs', 'lumberjack', 'knights', 'ni'],            'spam',            'eggs',            'lumberjack', diff --git a/Lib/test/test_pprint.py b/Lib/test/test_pprint.py index 54c0c57606..f9b679e667 100644 --- a/Lib/test/test_pprint.py +++ b/Lib/test/test_pprint.py @@ -164,6 +164,17 @@ class QueryTestCase(unittest.TestCase):          for type in [list, list2]:              self.assertEqual(pprint.pformat(type(o), indent=4), exp) +    def test_nested_indentations(self): +        o1 = list(range(10)) +        o2 = dict(first=1, second=2, third=3) +        o = [o1, o2] +        expected = """\ +[   [0, 1, 2, 3, 4, 5, 6, 7, 8, 9], +    {   'first': 1, +        'second': 2, +        'third': 3}]""" +        self.assertEqual(pprint.pformat(o, indent=4, width=42), expected) +      def test_sorted_dict(self):          # Starting in Python 2.5, pprint sorts dict displays by key regardless          # of how small the dictionary may be. diff --git a/Mac/Makefile.in b/Mac/Makefile.in index d12adccbdb..8fcd8df717 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -112,7 +112,7 @@ altinstallunixtools:  		$(INSTALL) -d -m $(DIRMODE) "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin" ;\  	fi  	for fn in python$(VERSION) pythonw$(VERSION) idle$(VERSION) \ -		  pydoc$(VERSION) python$(VERSION)-config) smtpd$(VERSION).py ;\ +		  pydoc$(VERSION) python$(VERSION)-config smtpd$(VERSION).py ;\  	do \  		ln -fs "$(prefix)/bin/$${fn}" "$(DESTDIR)$(FRAMEWORKUNIXTOOLSPREFIX)/bin/$${fn}" ;\  	done diff --git a/PCbuild/_ctypes.vcproj b/PCbuild/_ctypes.vcproj index d654a9be8e..b6abbe05ec 100644 --- a/PCbuild/_ctypes.vcproj +++ b/PCbuild/_ctypes.vcproj @@ -642,7 +642,7 @@  					>  					<Tool  						Name="VCCustomBuildTool" -						CommandLine="ml64 /nologo /c /Fo "$(IntDir)\win64.obj" "$(InputPath)"
" +						CommandLine="ml64 /nologo /c /Zi /Fo "$(IntDir)\win64.obj" "$(InputPath)"
"  						Outputs="$(IntDir)\win64.obj"  					/>  				</FileConfiguration>  | 
