Rename command.set to command.c_set
authorJeremy Stanley <fungi@yuggoth.org>
Sat, 5 Jan 2019 17:53:57 +0000 (17:53 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Sat, 5 Jan 2019 17:53:57 +0000 (17:53 +0000)
In order to avoid shadowing any built-in set() method for Python
modules, rename the set() function defined in the command module to
c_set() and adjust the corresponding caller for the "set"
administrative command accordingly.

mudpy/command.py
share/command.yaml

index 14640da..2eaf383 100644 (file)
@@ -1,6 +1,6 @@
 """User command functions for the mudpy engine."""
 
 """User command functions for the mudpy engine."""
 
-# Copyright (c) 2004-2018 mudpy authors. Permission to use, copy,
+# Copyright (c) 2004-2019 mudpy authors. Permission to use, copy,
 # modify, and distribute this software is granted under terms
 # provided in the LICENSE file distributed with this software.
 
 # modify, and distribute this software is granted under terms
 # provided in the LICENSE file distributed with this software.
 
@@ -341,7 +341,7 @@ def say(actor, parameters):
         actor.send("What do you want to say?")
 
 
         actor.send("What do you want to say?")
 
 
-def set(actor, parameters):
+def c_set(actor, parameters):
     """Set a facet of an element."""
     if not parameters:
         message = "You must specify an element, a facet and a value."
     """Set a facet of an element."""
     if not parameters:
         message = "You must specify an element, a facet and a value."
index 6c399b2..08bf518 100644 (file)
@@ -1,5 +1,5 @@
 ---
 ---
-_copy: Copyright (c) 2004-2018 mudpy authors. Permission to use, copy,
+_copy: Copyright (c) 2004-2019 mudpy authors. Permission to use, copy,
     modify, and distribute this software is granted under terms
     provided in the LICENSE file distributed with this software.
 
     modify, and distribute this software is granted under terms
     provided in the LICENSE file distributed with this software.
 
@@ -78,7 +78,7 @@ command.say.help: This allows you to speak to other characters within the same
     went teh wrong way?"$(eol)   You say, "youre sure i went teh wrong way?"
 command.say.see_also: chat
 
     went teh wrong way?"$(eol)   You say, "youre sure i went teh wrong way?"
 command.say.see_also: chat
 
-command.set.action: mudpy.command.set(actor, parameters)
+command.set.action: mudpy.command.c_set(actor, parameters)
 command.set.administrative: true
 command.set.description: Set a facet of an element.
 command.set.help: Invoke it like
 command.set.administrative: true
 command.set.description: Set a facet of an element.
 command.set.help: Invoke it like