[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - copypastemove.py:1.2
Albertas Agejevas
alga@codeworks.lt
Thu, 13 Mar 2003 13:49:39 -0500
Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv1411/src/zope/app/interfaces
Modified Files:
copypastemove.py
Log Message:
An unexpected raid by the Whitespace Police.
Other than fixes of nonconforming whitespace, just a couple of $Id$
docstrings has been added.
=== Zope3/src/zope/app/interfaces/copypastemove.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/interfaces/copypastemove.py:1.1 Mon Feb 17 10:10:41 2003
+++ Zope3/src/zope/app/interfaces/copypastemove.py Thu Mar 13 13:49:08 2003
@@ -14,7 +14,7 @@
def moveableTo(target, name=None):
'''Say whether the object can be moved to the given target.
-
+
Returns True if it can be moved there. Otherwise, returns
false.
'''
@@ -23,7 +23,7 @@
def copyTo(target, name=None):
"""Copy this object to the target given.
-
+
Returns the new name within the target, or None
if the target doesn't do names.
Typically, the target is adapted to IPasteTarget.
@@ -35,10 +35,10 @@
def copyable():
'''Returns True if the object is copyable, otherwise False.'''
-
+
def copyableTo(target, name=None):
'''Say whether the object can be copied to the given target.
-
+
Returns True if it can be copied there. Otherwise, returns
False.
'''