This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mps
Recipients mps
Date 2015-03-31.20:15:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427832932.11.0.38662420535.issue23831@psf.upfronthosting.co.za>
In-reply-to
Content
I apologize if it has already been reported but I was unable to find similar issue reported using "search".

Maybe just add:
    def moveto(self, tagOrId, xPos, yPos):
        """Move the items given by tagOrId in the canvas coordinate  
        space so that the first coordinate pair of the bottommost 
        item with tag tagOrId is located at position (xPos,yPos). 
        xPos and yPos may be the empty string, in which case the        
        corresponding coordinate will be unchanged. All items matching
        tagOrId remain in the same positions relative to each other.    
        This command returns an empty string. 
        """
        return self.tk.call(self._w, 'moveto', tagOrId, xPos, yPos)
History
Date User Action Args
2015-03-31 20:15:32mpssetrecipients: + mps
2015-03-31 20:15:32mpssetmessageid: <1427832932.11.0.38662420535.issue23831@psf.upfronthosting.co.za>
2015-03-31 20:15:32mpslinkissue23831 messages
2015-03-31 20:15:31mpscreate