Python __new__method testifying and my other perspectives

After an afternoon I've finally got a basic understanding of python's __new__method. Although still do I feel sorrow for the scanty knowledge because the basic implementation is still C, which I even haven't begun.

路漫漫其修远兮,吾将上下而求索。

The way ahead is long; I see no ending,yet high and low I'll search with my will unbending.

The general idea which inspired me is a pseudo-code from the book named Fluent Python, collected at page 615:

#From book <Fluent Python>, author Luciano Ramalho

#It is a summarised pseudocode of the process of building an object in Python.


#pseudo-code for Python object construction
def object_maker(the_class, some_arg):
	new_object=the_class.__new__(some_arg)
	if isinstance(new_object, the_class):
		the_class.__init__(new_object, some_arg)
		return new_object

#the following statemenets are roughly equivalent:
x=Foo('bar')
#and
x=object_maker(Foo, 'bar')

The pseudocode above is really manifest. The reason we call it pseudocode is because the source code is C, but it is achieved by python. Nonetheless, it doesn't matter for understanding what's going on:

As we see, once an instance is created, __new__ method, the customed class's __new__method, is the first one being processed. And the most interesting one is that the customed __init__ method is still processed before the new_object returning. Which means:

In every object creation, both the __new__ and the __init__ methods are run. The non-obvious behavior is the __new__ calls __init__. This is why __init__ methods do not include a return statement. The newly created and initialized object is returned by the __new__ method. Think of the __init__ method as merely sprucing up the newly create object with attribute values, etc.                             

---copied from Chris Freemanhttps://teamtreehouse.com/community/why-do-i-have-to-use-self-strnewargs-kwargs-i-tried-not-using-it-and-it-worked

So, the real constructor method is __new__. The reason we often refer to __init__ as the constructor method is because we adopted jargon from other languages. __new__ umst return an instance, and that instance will in turn be passed as the first argument self, then goes on constructing other instance methods by ourselves.

The following code is what I used to testify:

import json

class TraditionalCar:
	def __new__(cls, *args, **kwargs):
		print('Construct a new object...')
		Name=kwargs.pop('Name')
		Wheel_num=kwargs.pop('Wheel_num')
		Medium=kwargs['Medium']
		Fuel=kwargs['Fuel']
		if Name:
			print('I have been processed.')
			return kwargs
		else:
			return super().__new__(cls) #equal to: return object.__new__(cls)
		
	def __init__(self, *args, **kwargs):
		print('Initialise a new object')
		self._name=kwargs.pop('name')
		self._price=kwargs.pop('price')
		self._first_appreared_time=kwargs.pop('first_appeared_time')
		
	def __str__(self):
		print('The properties of the car are:')
		return json.dumps(self.__dict__)

if __name__=='__main__':
	print('object_construction pseudocode testifying:')
	
	MyFavor=TraditionalCar(
	Name='Car',
	Wheel_num='4',
	Medium='Road',
	Fuel='Petroleum',
	name='Audi R8',
	price='$143,000',
	first_appeared_time='2006')
	
	print(type(MyFavor))
	print(MyFavor)


output:
object_construction pseudocode testifying:
Construct a new object...
I have been processed.
<class 'dict'>
{'Medium': 'Road', 'Fuel': 'Petroleum', 'name': 'Audi R8', 'price': '$143,000', 'first_appeared_time': '2006'}

What a strange thing but not all in threotical. The __new__ method in the code above doesn't construct an object because it returns a list kwargs, which turns the TraditionalCar() into a dict class. Which means __init__ doesn't initialise the class and all kwargs becomes the key and values of an instance of dict data structure.

But when the Name in __new__ is not True:

import json

class TraditionalCar:
	def __new__(cls, *args, **kwargs):
		print('Construct a new object...')
		Name=kwargs.pop('Name')
		Wheel_num=kwargs.pop('Wheel_num')
		Medium=kwargs['Medium']
		Fuel=kwargs['Fuel']
		if not Name:
			print('I have been processed.')
			return kwargs
		else:
			return super().__new__(cls) #equal to: return object.__new__(cls)
		
	def __init__(self, *args, **kwargs):
		print('Initialise a new object')
		self._name=kwargs.pop('name')
		self._price=kwargs.pop('price')
		self._first_appreared_time=kwargs.pop('first_appeared_time')
		
	def __str__(self):
		print('The properties of the car are:')
		return json.dumps(self.__dict__)

if __name__=='__main__':
	print('object_construction pseudocode testifying:')
	
	MyFavor=TraditionalCar(
	Name='Car',
	Wheel_num='4',
	Medium='Road',
	Fuel='Petroleum',
	name='Audi R8',
	price='$143,000',
	first_appeared_time='2006')
	
	print(type(MyFavor))
    print(type(TraditionalCar))
	print(TraditionalCar.__bases__)
	print(MyFavor)



output:
object_construction pseudocode testifying:
Construct a new object...
Initialise a new object
<class '__main__.TraditionalCar'>
<class 'type'>
(<class 'object'>,)
The properties of the car are:
{"_name": "Audi R8", "_price": "$143,000", "_first_appreared_time": "2006"}


__init__ method has been successfully processed and the object has been successfully created. But remember, it is construced by the __new__ method of the base object: object!! 

If the customed class is inherited from another. It may become a bit different:

class ReversedStr(str):
    def __new__(cls, *args, **kwargs):
        self = str.__new__(cls, *args, **kwargs)  #cls included here too
        self = self[::-1]
        return self

# Console:
# test = ReversedStr("Hello")
# >>>test
# output: "olleH"

It is because: The advantage of using the super or str.__new__ is be able to use the automatic type converters built into the str.__new__ method and gain access to the slicing methods available to the str class.

---copied from Chris FreemanWhy do I have to use self = str.__new__(*args, **kwargs)? I tried not using it and it worked. (Example) | Treehouse Community

Furthermore, if we go deeper for the class inheritance, which is really complicated but still significant for pointing out, is : if the code is like the underneath:

class A:
    def __new__(cls, ''' *args, **kwargs'''):
        return super().__new__(cls, ''' *args, **kwargs''')

You are not allowed to add more arguments after cls (cls stands for class A) or an error will be raised:

TypeError: object.__new__() takes exactly one argument (the type to instantiate)

This error can be found in CPython's source code, which is opened on github:

static PyObject *
object_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
    if (excess_args(args, kwds)) {
        if (type->tp_new != object_new) {
            PyErr_SetString(PyExc_TypeError,
                            "object.__new__() takes exactly one argument (the type to instantiate)");
            return NULL;
        }
        if (type->tp_init == object_init) {
            PyErr_Format(PyExc_TypeError, "%.200s() takes no arguments",
                         type->tp_name);
            return NULL;
        }
    }

Because every class is automatically inherited from object, the basic object. Yes, the basic object is object, which is a basic knowledge. However, when I go deeper... We all know creating a class is actually using type(), the metaclass. And if you gather them within several sentences:

>>> class A:
...     pass
... 
>>> a=A()
>>> A.__bases__
(<class 'object'>,)
>>> A.__class__
<class 'type'>
>>> a.__bases__
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'A' object has no attribute '__bases__'
>>> a.__class__
<class '__main__.A'>
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> object.__bases__
()
>>> object.__class__
<class 'type'>
>>> type.__bases__
(<class 'object'>,)
>>> type.__class__
<class 'type'>
>>> 

I won't explain that much.

Maybe one day I will be expertised in C.... And I will turn back finding out.

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值