353:d38295fd97c2 | 354:a967ff16629a |
---|---|
8 """ | 8 """ |
9 | 9 |
10 import os | 10 import os |
11 | 11 |
12 | 12 |
13 class RefactoringClientFileSystemCommands(object): | 13 class RefactoringClientFileSystemCommands: |
14 """ | 14 """ |
15 Class implementing the client side of the rope file system commands. | 15 Class implementing the client side of the rope file system commands. |
16 """ | 16 """ |
17 def __init__(self, client): | 17 def __init__(self, client): |
18 """ | 18 """ |
89 @param data data to be written | 89 @param data data to be written |
90 """ | 90 """ |
91 self.__normal_actions.write(path, data) | 91 self.__normal_actions.write(path, data) |
92 | 92 |
93 | 93 |
94 class E5FileSystemCommands(object): | 94 class E5FileSystemCommands: |
95 """ | 95 """ |
96 Class implementing file system commands for rope. | 96 Class implementing file system commands for rope. |
97 """ | 97 """ |
98 def __init__(self, project): | 98 def __init__(self, project): |
99 """ | 99 """ |