Some improvements to the commands.process function - better process naming and informational output.

Conflicts:

	plugins/String/plugin.py
	src/commands.py
This commit is contained in:
Daniel Folkinshteyn 2010-08-05 13:45:02 -04:00 committed by Valentin Lorentz
parent be585ecea9
commit e98ac0f4c2
2 changed files with 5 additions and 5 deletions

View File

@ -993,11 +993,11 @@ class CommandProcess(world.SupyProcess):
to run in processes.
"""
def __init__(self, target=None, args=(), kwargs={}):
self.command = args[0]
self.cb = target.im_self
pn = kwargs.pop('pn', 'Unknown')
cn = kwargs.pop('cn', 'unknown')
procName = 'Process #%s (for %s.%s)' % (world.processesSpawned,
self.cb.name(),
self.command)
pn,
cn)
log.debug('Spawning process %s (args: %r)', procName, args)
self.__parent = super(CommandProcess, self)
self.__parent.__init__(target=target, name=procName,

View File

@ -1,3 +1,3 @@
"""stick the various versioning attributes in here, so we only have to change
them once."""
version = '0.83.4.1+limnoria (2011-08-23T16:41:52+0200)'
version = '0.83.4.1+limnoria (2011-08-25T11:36:47+0200)'