Python html doc cosmetic tweaks

[skip ci]
This commit is contained in:
William S Fulton 2015-02-02 20:00:07 +00:00
commit 7c2ed7eae5

View file

@ -2169,15 +2169,15 @@ for Python 2.2):
import _example
class Foo(object):
def __init__(self):
self.this = _example.new_Foo()
self.thisown = 1
def __del__(self):
if self.thisown:
_example.delete_Foo(self.this)
def spam(self,arg1):
return _example.Foo_spam(self.this,arg1)
x = property(_example.Foo_x_get, _example.Foo_x_set)
def __init__(self):
self.this = _example.new_Foo()
self.thisown = 1
def __del__(self):
if self.thisown:
_example.delete_Foo(self.this)
def spam(self,arg1):
return _example.Foo_spam(self.this,arg1)
x = property(_example.Foo_x_get, _example.Foo_x_set)
</pre>
</div>
@ -2219,9 +2219,9 @@ like in a proxy class:
<div class="targetlang">
<pre>
class Foo(object):
def __init__(self):
self.this = _example.new_Foo()
self.thisown = 1
def __init__(self):
self.this = _example.new_Foo()
self.thisown = 1
</pre>
</div>
@ -2313,11 +2313,11 @@ private:
<div class="targetlang">
<pre>
class MyPyException (Exception) :
def __init__(self, msg, *args) :
class MyPyException(Exception):
def __init__(self, msg, *args):
Exception.__init__(self, *args)
self.myexc = MyException(msg)
def what (self) :
def what(self):
return self.myexc.what()
</pre>
</div>