Public Member Functions | |
| def | __init__ (self) |
| Initializer. More... | |
| def | add_chunk (self, chunk) |
| Add chunk. More... | |
| def | apply (self, filename) |
| Apply function. More... | |
| def | chunks (self) |
| Get the chunks. More... | |
| def | set_dst (self, dst) |
| Set destination. More... | |
| def | set_src (self, src) |
| Set source. More... | |
| def | write (self, f) |
| Write to file. More... | |
Private Attributes | |
| __chunks | |
| chunks More... | |
| __dst | |
| destination More... | |
| __src | |
| source More... | |
Patch class.
Definition at line 307 of file check-style.py.
| def check-style.Patch.__init__ | ( | self | ) |
| def check-style.Patch.add_chunk | ( | self, | |
| chunk | |||
| ) |
Add chunk.
| self | this object |
| chunk | chunk |
Definition at line 321 of file check-style.py.
References check-style.Patch.__chunks.
| def check-style.Patch.apply | ( | self, | |
| filename | |||
| ) |
Apply function.
| self | The current class |
| filename | file name |
Definition at line 348 of file check-style.py.
| def check-style.Patch.chunks | ( | self | ) |
Get the chunks.
| self | The current class |
Definition at line 328 of file check-style.py.
References check-style.Patch.__chunks.
| def check-style.Patch.set_dst | ( | self, | |
| dst | |||
| ) |
Set destination.
| self | this object |
| dst | destintion |
Definition at line 341 of file check-style.py.
References check-style.Patch.__dst.
| def check-style.Patch.set_src | ( | self, | |
| src | |||
| ) |
Set source.
| self | this object |
| src | source |
Definition at line 334 of file check-style.py.
References check-style.Patch.__src.
| def check-style.Patch.write | ( | self, | |
| f | |||
| ) |
Write to file.
| self | The current class |
| f | the file |
Definition at line 356 of file check-style.py.
References check-style.Patch.__chunks, check-style.Patch.__dst, and check-style.Patch.__src.
Referenced by visualizer.ipython_view.IPythonView.onKeyPressExtend().
Here is the caller graph for this function:
|
private |
chunks
Definition at line 320 of file check-style.py.
Referenced by check-style.Patch.add_chunk(), check-style.Patch.chunks(), and check-style.Patch.write().
|
private |
destination
Definition at line 319 of file check-style.py.
Referenced by check-style.Patch.set_dst(), and check-style.Patch.write().
|
private |
source
Definition at line 318 of file check-style.py.
Referenced by check-style.Patch.set_src(), and check-style.Patch.write().