[Python-checkins] r45953 - python/branches/release24-maint/Doc/lib/libcursespanel.tex
georg.brandl
python-checkins at python.org
Wed May 10 18:11:48 CEST 2006
Author: georg.brandl
Date: Wed May 10 18:11:48 2006
New Revision: 45953
Modified:
python/branches/release24-maint/Doc/lib/libcursespanel.tex
Log:
Bug #1484978: curses.panel: clarify that Panel objects are destroyed on garbage collection.
(backport from rev. 45952)
Modified: python/branches/release24-maint/Doc/lib/libcursespanel.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libcursespanel.tex (original)
+++ python/branches/release24-maint/Doc/lib/libcursespanel.tex Wed May 10 18:11:48 2006
@@ -22,6 +22,9 @@
\begin{funcdesc}{new_panel}{win}
Returns a panel object, associating it with the given window \var{win}.
+Be aware that you need to keep the returned panel object referenced
+explicitly. If you don't, the panel object is garbage collected and
+removed from the panel stack.
\end{funcdesc}
\begin{funcdesc}{top_panel}{}
More information about the Python-checkins
mailing list