From 70a30e8c948e2cad90f8e49e7771059c930ec61e Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 17 Feb 2004 04:17:36 +0000 Subject: [PATCH] markup correction --- Doc/api/newtypes.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/api/newtypes.tex b/Doc/api/newtypes.tex index 5b2e6cf7877..1490eedec83 100644 --- a/Doc/api/newtypes.tex +++ b/Doc/api/newtypes.tex @@ -1396,7 +1396,7 @@ might be collected by a garbage collection on any thread). This is not a problem for Python API calls, since the thread on which tp_dealloc is called will own the Global Interpreter Lock (GIL). However, if the object being destroyed in turn destroys objects from -some other C or C++ library, care should be taken to ensure that +some other C or \Cpp{} library, care should be taken to ensure that destroying those objects on the thread which called tp_dealloc will not violate any assumptions of the library.