[Python-checkins] r54671 - python/trunk/Doc/texinputs/python.sty (original) (raw)

georg.brandl python-checkins at python.org
Tue Apr 3 09:04:30 CEST 2007


Author: georg.brandl Date: Tue Apr 3 09:04:27 2007 New Revision: 54671

Modified: python/trunk/Doc/texinputs/python.sty Log: Fix the strange case of

\begin{methoddesc}[NNTP]{...}

where

\ifx#1@undefined ended up comparing N and N, therefore executing the true part of the conditional, blowing up at @undefined.

Modified: python/trunk/Doc/texinputs/python.sty

--- python/trunk/Doc/texinputs/python.sty (original) +++ python/trunk/Doc/texinputs/python.sty Tue Apr 3 09:04:27 2007 @@ -612,7 +612,7 @@ \newenvironment{cfuncdesc}[4][py at badkey]{ \begin{fulllineitems} \cfuncline{#2}{#3}{#4}



More information about the Python-checkins mailing list