]> granicus.if.org Git - python/commitdiff
Remove another lie.
authorMichael W. Hudson <mwh@python.net>
Thu, 6 Feb 2003 18:38:11 +0000 (18:38 +0000)
committerMichael W. Hudson <mwh@python.net>
Thu, 6 Feb 2003 18:38:11 +0000 (18:38 +0000)
Doc/ext/extending.tex

index a690bdd5ef179a38ae162dec14fdd7d26c9c9caa..2b7963e665a98fe3857d7af942b76d01e989d1b6 100644 (file)
@@ -818,10 +818,8 @@ In languages like C or \Cpp, the programmer is responsible for
 dynamic allocation and deallocation of memory on the heap.  In C,
 this is done using the functions \cfunction{malloc()} and
 \cfunction{free()}.  In \Cpp, the operators \keyword{new} and
-\keyword{delete} are used with essentially the same meaning; they are
-actually implemented using \cfunction{malloc()} and
-\cfunction{free()}, so we'll restrict the following discussion to the
-latter.
+\keyword{delete} are used with essentially the same meaning and
+we'll restrict the following discussion to the latter.
 
 Every block of memory allocated with \cfunction{malloc()} should
 eventually be returned to the pool of available memory by exactly one