]> granicus.if.org Git - python/commitdiff
bpo-34006: Revert line length limit for Windows help docs (GH-8051)
authorZachary Ware <zachary.ware@gmail.com>
Mon, 2 Jul 2018 20:31:42 +0000 (15:31 -0500)
committerTerry Jan Reedy <tjreedy@udel.edu>
Mon, 2 Jul 2018 20:31:42 +0000 (16:31 -0400)
 The line-length limit is not needed because the pages appear in a separate app rather
 than on a browser tab.  It can also interact badly with the DPI setting.

Doc/make.bat
Misc/NEWS.d/next/Windows/2018-07-02-14-19-32.bpo-34006.7SgBT_.rst [new file with mode: 0644]

index cff85ceabae9d6ea06251f3fad74b8cc3410295a..d28dae78e86d4f84937de2052eeea65edfa7a22e 100644 (file)
@@ -131,6 +131,9 @@ if exist ..\Misc\NEWS (
 if NOT "%PAPER%" == "" (
     set SPHINXOPTS=-D latex_elements.papersize=%PAPER% %SPHINXOPTS%
 )
+if "%1" EQU "htmlhelp" (
+    set SPHINXOPTS=-D html_theme_options.body_max_width=none %SPHINXOPTS%
+)
 cmd /S /C "%SPHINXBUILD% %SPHINXOPTS% -b%1 -dbuild\doctrees . "%BUILDDIR%\%1" %2 %3 %4 %5 %6 %7 %8 %9"
 
 if "%1" EQU "htmlhelp" (
diff --git a/Misc/NEWS.d/next/Windows/2018-07-02-14-19-32.bpo-34006.7SgBT_.rst b/Misc/NEWS.d/next/Windows/2018-07-02-14-19-32.bpo-34006.7SgBT_.rst
new file mode 100644 (file)
index 0000000..f21e516
--- /dev/null
@@ -0,0 +1,3 @@
+Revert line length limit for Windows help docs. The line-length limit is not
+needed because the pages appear in a separate app rather than on a browser
+tab.  It can also interact badly with the DPI setting.