我如何给绿名分配名称

时间:2018-08-27 10:41:29

标签: python gevent

我正在为gevent greenlet分配自定义名称/标识符。 Gevent已经分配了唯一的名称:

def name(self):
    """
    The greenlet name. By default, a unique name is constructed using
    the :attr:`minimal_ident`. You can assign a string to this
    value to change it. It is shown in the `repr` of this object.

    .. versionadded:: 1.3a2
    """

但是,我不确定如何将该值更改为用户输入的名称。有可能这样做吗?

我试图做这样的事情,最终导致属性错误:

       def begin(self):
          self.thread = gevent.spawn(self.print_message)
          self.thread.minimal_ident = "t1"
          print(self.thread.name) 

AttributeError: attribute 'minimal_ident' of 
'gevent._greenlet.Greenlet' objects is not writable

2 个答案:

答案 0 :(得分:1)

gevent.Greenlet.name不是常见的property,但是a special non-data descriptorgevent.util.readproperty obj的作用类似于@property,并且对于非数据描述符:

  

...相反,实例可以覆盖非数据描述符。

您可以简单地覆盖它:

>>> gr = gevent.spawn(gevent.sleep, (1,))
>>> gr.name = "a_cool_name"
>>> print(gr)
<Greenlet "a_cool_name" at 0x1082a47b8: sleep((1,))>

详细了解gevent源和the descriptor doc

答案 1 :(得分:0)

首先实例化该类,然后按原样覆盖该方法;

my_obj = Class() #Instantiate the class
my_obj.name = 'this is the string'

这将用您自己的字符串替换构造的名称。