Coverage for src/pymor/tools/named : 100%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
|
# This file is part of the pyMOR project (http://www.pymor.org). # Copyright Holders: Rene Milk, Stephan Rave, Felix Schindler # License: BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
'''Mixin for objects with a name.
Attributes ---------- name Property returning the object's name. If no name has been set, a random name is created from the class name and a uuid4. '''
def name(self):
def name(self, n): |