From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1428853AbeCBOzL (ORCPT ); Fri, 2 Mar 2018 09:55:11 -0500 Received: from mx2.suse.de ([195.135.220.15]:34550 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1423277AbeCBOzH (ORCPT ); Fri, 2 Mar 2018 09:55:07 -0500 Date: Fri, 02 Mar 2018 15:55:06 +0100 Message-ID: From: Takashi Iwai To: Matthew Wilcox Cc: Jonathan Corbet , Jani Nikula , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Documentation/sphinx: Fix Directive import error In-Reply-To: <20180302145055.GA18137@bombadil.infradead.org> References: <20180302145055.GA18137@bombadil.infradead.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/25.3 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 02 Mar 2018 15:50:55 +0100, Matthew Wilcox wrote: > > On Fri, Mar 02, 2018 at 12:49:03PM +0100, Takashi Iwai wrote: > > I'm no expert of sphinx nor python, so something might be wrong. > > Please check it. > > I'm also not a pythonista, but ... > > > --- a/Documentation/sphinx/kerneldoc.py > > +++ b/Documentation/sphinx/kerneldoc.py > > @@ -37,7 +37,10 @@ import glob > > from docutils import nodes, statemachine > > from docutils.statemachine import ViewList > > from docutils.parsers.rst import directives > > -from sphinx.util.compat import Directive > > +try: > > + from sphinx.util.compat import Directive > > +except ImportError: > > + from docutils.parsers.rst import directives, Directive > > It seems to me the previous line already imported > docutils.parsers.rst.directives, and we should probably prefer the newer > parser even with Sphinx 1.6, so I would think this would work better: > > -from sphinx.util.compat import Directive > +try: > + from docutils.parsers.rst import Directive > +except ImportError: > + from sphinx.util.compat import Directive > > (it works on Debian with Sphinx 1.6.7) Makes more sense, yes. Jon, would you like me resending the patch? Or it's trivial enough as you can fix in place. thanks, Takashi