get_method() returns a method name, not take it as an argument
(backporting to release24-maint branch)
diff --git a/Doc/lib/liburllib2.tex b/Doc/lib/liburllib2.tex
index dd6a714..6f9395c 100644
--- a/Doc/lib/liburllib2.tex
+++ b/Doc/lib/liburllib2.tex
@@ -254,8 +254,8 @@
\begin{methoddesc}[Request]{get_method}{}
Return a string indicating the HTTP request method. This is only
-meaningful for HTTP requests, and currently always takes one of the
-values ("GET", "POST").
+meaningful for HTTP requests, and currently always returns
+\code{'GET'} or \code{'POST'}.
\end{methoddesc}
\begin{methoddesc}[Request]{has_data}{}