From b3b0eb96b32c54f6de5af65e9544791e601f26ae Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 31 Oct 2000 21:20:30 +0000 Subject: [PATCH] Remove __del__ caveats as they no longer apply. update links [SVN r8079] --- special.html | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/special.html b/special.html index 22ed7d04..13bc9617 100644 --- a/special.html +++ b/special.html @@ -18,17 +18,13 @@ special method names supported by real Python class instances except: - (more on the latter two below). So, for example, we can wrap a + (more on the reasons below). So, for example, we can wrap a std::map<std::size_t,std::string> as follows:

Example @@ -354,7 +350,7 @@ pair_int_long.def_read_write(&Pil::second, "second"); same type. -

Where are the __r<name>__ +

Where are the __r<name>__ functions?

@@ -386,7 +382,7 @@ if (PyInstance_Check(r)) { ...

- Previous: Function Overloading Next: Inheritance Next: A Peek Under the Hood Up: Top