[Python-checkins] python/dist/src/Doc/lib libcookie.tex, 1.12, 1.13

George Yoshida python at dynkin.com
Thu Aug 25 13:16:37 CEST 2005


birkenfeld at users.sourceforge.net wrote:
> Index: libcookie.tex
> ===================================================================
> RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcookie.tex,v
> retrieving revision 1.12
> retrieving revision 1.13
> diff -u -d -r1.12 -r1.13
> --- libcookie.tex	31 May 2004 18:22:39 -0000	1.12
> +++ libcookie.tex	24 Aug 2005 22:34:21 -0000	1.13
> @@ -98,7 +98,9 @@
>  Return a string representation suitable to be sent as HTTP headers.
>  \var{attrs} and \var{header} are sent to each \class{Morsel}'s
>  \method{output()} method. \var{sep} is used to join the headers
> -together, and is by default a newline.
> +together, and is by default the combination '\r\n' (CRLF).
> +\versionchanged[The default separator has been changed from '\n' to match the cookie
> +specification]{2.5}
>  \end{methoddesc}

\ has a special meaning in TeX. Use \e (or \textbackslash) instead.

   http://www.python.org/dev/doc/devel/doc/inline-markup.html

-- 
george


Index: libcookie.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcookie.tex,v
retrieving revision 1.13
diff -u -r1.13 libcookie.tex
--- libcookie.tex	24 Aug 2005 22:34:21 -0000	1.13
+++ libcookie.tex	25 Aug 2005 10:36:14 -0000
@@ -98,8 +98,8 @@
  Return a string representation suitable to be sent as HTTP headers.
  \var{attrs} and \var{header} are sent to each \class{Morsel}'s
  \method{output()} method. \var{sep} is used to join the headers
-together, and is by default the combination '\r\n' (CRLF).
-\versionchanged[The default separator has been changed from '\n' to 
match the cookie
+together, and is by default the combination \code{'\e r\e n'} (CRLF).
+\versionchanged[The default separator has been changed from \code{'\e 
n'} to match the cookie
  specification]{2.5}
  \end{methoddesc}


More information about the Python-checkins mailing list