Commit da825ab2 authored by Éric Araujo's avatar Éric Araujo

Merged revisions 86670 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86670 | eric.araujo | 2010-11-22 04:09:19 +0100 (lun., 22 nov. 2010) | 5 lines


  Remove unnecessary `object` base class in docs (#10366).

  Also add a note about inheritance from `object` being default.
........
parent f213d231
...@@ -12,7 +12,7 @@ import operator ...@@ -12,7 +12,7 @@ import operator
## ##
class Foo(object): class Foo:
def f(self): def f(self):
print('you called Foo.f()') print('you called Foo.f()')
def g(self): def g(self):
......
import sqlite3 import sqlite3
class Point(object): class Point:
def __init__(self, x, y): def __init__(self, x, y):
self.x, self.y = x, y self.x, self.y = x, y
......
import sqlite3 import sqlite3
class Point(object): class Point:
def __init__(self, x, y): def __init__(self, x, y):
self.x, self.y = x, y self.x, self.y = x, y
......
import sqlite3 import sqlite3
class Point(object): class Point:
def __init__(self, x, y): def __init__(self, x, y):
self.x, self.y = x, y self.x, self.y = x, y
......
...@@ -369,7 +369,7 @@ your own classes be used as function arguments. :mod:`ctypes` looks for an ...@@ -369,7 +369,7 @@ your own classes be used as function arguments. :mod:`ctypes` looks for an
:attr:`_as_parameter_` attribute and uses this as the function argument. Of :attr:`_as_parameter_` attribute and uses this as the function argument. Of
course, it must be one of integer, string, or bytes:: course, it must be one of integer, string, or bytes::
>>> class Bottles(object): >>> class Bottles:
... def __init__(self, number): ... def __init__(self, number):
... self._as_parameter_ = number ... self._as_parameter_ = number
... ...
......
...@@ -256,7 +256,7 @@ are always available. They are listed here in alphabetical order. ...@@ -256,7 +256,7 @@ are always available. They are listed here in alphabetical order.
['Struct', '__builtins__', '__doc__', '__file__', '__name__', ['Struct', '__builtins__', '__doc__', '__file__', '__name__',
'__package__', '_clearcache', 'calcsize', 'error', 'pack', 'pack_into', '__package__', '_clearcache', 'calcsize', 'error', 'pack', 'pack_into',
'unpack', 'unpack_from'] 'unpack', 'unpack_from']
>>> class Foo(object): >>> class Foo:
... def __dir__(self): ... def __dir__(self):
... return ["kan", "ga", "roo"] ... return ["kan", "ga", "roo"]
... ...
...@@ -864,7 +864,7 @@ are always available. They are listed here in alphabetical order. ...@@ -864,7 +864,7 @@ are always available. They are listed here in alphabetical order.
function for setting, and *fdel* a function for del'ing, an attribute. Typical function for setting, and *fdel* a function for del'ing, an attribute. Typical
use is to define a managed attribute ``x``:: use is to define a managed attribute ``x``::
class C(object): class C:
def __init__(self): def __init__(self):
self._x = None self._x = None
...@@ -883,7 +883,7 @@ are always available. They are listed here in alphabetical order. ...@@ -883,7 +883,7 @@ are always available. They are listed here in alphabetical order.
property will copy *fget*'s docstring (if it exists). This makes it possible to property will copy *fget*'s docstring (if it exists). This makes it possible to
create read-only properties easily using :func:`property` as a :term:`decorator`:: create read-only properties easily using :func:`property` as a :term:`decorator`::
class Parrot(object): class Parrot:
def __init__(self): def __init__(self):
self._voltage = 100000 self._voltage = 100000
...@@ -900,7 +900,7 @@ are always available. They are listed here in alphabetical order. ...@@ -900,7 +900,7 @@ are always available. They are listed here in alphabetical order.
corresponding accessor function set to the decorated function. This is corresponding accessor function set to the decorated function. This is
best explained with an example:: best explained with an example::
class C(object): class C:
def __init__(self): def __init__(self):
self._x = None self._x = None
...@@ -1200,7 +1200,7 @@ are always available. They are listed here in alphabetical order. ...@@ -1200,7 +1200,7 @@ are always available. They are listed here in alphabetical order.
attribute. For example, the following two statements create identical attribute. For example, the following two statements create identical
:class:`type` objects: :class:`type` objects:
>>> class X(object): >>> class X:
... a = 1 ... a = 1
... ...
>>> X = type('X', (object,), dict(a=1)) >>> X = type('X', (object,), dict(a=1))
......
...@@ -323,7 +323,7 @@ loops that truncate the stream. ...@@ -323,7 +323,7 @@ loops that truncate the stream.
:func:`groupby` is equivalent to:: :func:`groupby` is equivalent to::
class groupby(object): class groupby:
# [k for k, g in groupby('AAAABBBCCDAABBB')] --> A B C D A B # [k for k, g in groupby('AAAABBBCCDAABBB')] --> A B C D A B
# [list(g) for k, g in groupby('AAAABBBCCD')] --> AAAA BBB CC D # [list(g) for k, g in groupby('AAAABBBCCD')] --> AAAA BBB CC D
def __init__(self, iterable, key=None): def __init__(self, iterable, key=None):
......
...@@ -1318,7 +1318,7 @@ callables with the manager class. For example:: ...@@ -1318,7 +1318,7 @@ callables with the manager class. For example::
from multiprocessing.managers import BaseManager from multiprocessing.managers import BaseManager
class MathsClass(object): class MathsClass:
def add(self, x, y): def add(self, x, y):
return x + y return x + y
def mul(self, x, y): def mul(self, x, y):
......
...@@ -682,7 +682,7 @@ Letting your object adapt itself ...@@ -682,7 +682,7 @@ Letting your object adapt itself
This is a good approach if you write the class yourself. Let's suppose you have This is a good approach if you write the class yourself. Let's suppose you have
a class like this:: a class like this::
class Point(object): class Point:
def __init__(self, x, y): def __init__(self, x, y):
self.x, self.y = x, y self.x, self.y = x, y
......
...@@ -560,7 +560,16 @@ A class definition defines a class object (see section :ref:`types`): ...@@ -560,7 +560,16 @@ A class definition defines a class object (see section :ref:`types`):
A class definition is an executable statement. The inheritance list usually A class definition is an executable statement. The inheritance list usually
gives a list of base classes (see :ref:`metaclasses` for more advanced uses), so gives a list of base classes (see :ref:`metaclasses` for more advanced uses), so
each item in the list should evaluate to a class object which allows each item in the list should evaluate to a class object which allows
subclassing. subclassing. Classes without an inheritance list inherit, by default, from the
base class :class:`object`; hence, ::
class Foo:
pass
is equivalent to ::
class Foo(object):
pass
The class's suite is then executed in a new execution frame (see :ref:`naming`), The class's suite is then executed in a new execution frame (see :ref:`naming`),
using a newly created local namespace and the original global namespace. using a newly created local namespace and the original global namespace.
......
...@@ -1988,7 +1988,7 @@ to work correctly if defined on an object's type, not in the object's instance ...@@ -1988,7 +1988,7 @@ to work correctly if defined on an object's type, not in the object's instance
dictionary. That behaviour is the reason why the following code raises an dictionary. That behaviour is the reason why the following code raises an
exception:: exception::
>>> class C(object): >>> class C:
... pass ... pass
... ...
>>> c = C() >>> c = C()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment