]> granicus.if.org Git - python/commitdiff
Fix markup error and minor consistency nit.
authorFred Drake <fdrake@acm.org>
Thu, 31 Aug 2000 19:35:56 +0000 (19:35 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 31 Aug 2000 19:35:56 +0000 (19:35 +0000)
Doc/lib/libsys.tex

index ac28e6f975b4dca82c70eb7dfe4a844c7612f930..8d9d0224154d74db8b81c8cc55fe803d3f90ed51 100644 (file)
@@ -152,7 +152,7 @@ generally one higher than you might expect, because it includes the
 Return the current value of the recursion limit, the maximum depth of
 the Python interpreter stack.  This limit prevents infinite recursion
 from causing an overflow of the C stack and crashing Python.  It can
-be set by \function{setrecursionlimit}.
+be set by \function{setrecursionlimit()}.
 \end{funcdesc}
 
 \begin{datadesc}{hexversion}
@@ -291,7 +291,7 @@ The highest possible limit is platform-dependent.  A user may need to
 set the limit higher when she has a program that requires deep
 recursion and a platform that supports a higher limit.  This should be
 done with care, because a too-high limit can lead to a crash.
-\edn{funcdesc}
+\end{funcdesc}
 
 \begin{funcdesc}{settrace}{tracefunc}
   Set the system's trace function, which allows you to implement a