RefactoringRope/FileSystemCommands.py

branch
server_client_variant
changeset 195
5d614a567be3
parent 162
55eaaed9d590
child 203
c38750e1bafd
equal deleted inserted replaced
194:5c297b473425 195:5d614a567be3
9 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11 11
12 import os 12 import os
13 13
14 import rope.base.fscommands
15
16 14
17 class RefactoringClientFileSystemCommands(object): 15 class RefactoringClientFileSystemCommands(object):
18 """ 16 """
19 Class implementing the client side of the rope file system commands. 17 Class implementing the client side of the rope file system commands.
20 """ 18 """
23 Constructor 21 Constructor
24 22
25 @param client reference to the refactoring client 23 @param client reference to the refactoring client
26 @type RefactoringClient 24 @type RefactoringClient
27 """ 25 """
26 import rope.base.fscommands
27
28 self.__client = client 28 self.__client = client
29 self.__normal_actions = rope.base.fscommands.FileSystemCommands() 29 self.__normal_actions = rope.base.fscommands.FileSystemCommands()
30 30
31 def create_file(self, path): 31 def create_file(self, path):
32 """ 32 """

eric ide

mercurial