Created
February 17, 2011 16:03
-
-
Save tingletech/831987 to your computer and use it in GitHub Desktop.
tablib 2.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff ../collengine/tablib/core.py tablib/core.py | |
| 77c77 | |
| < def tuple(self): | |
| --- | |
| > def _tuple(self): | |
| 82c82 | |
| < def list(self): | |
| --- | |
| > def _list(self): | |
| 288,289c288,289 | |
| < @property | |
| < def headers(self): | |
| --- | |
| > #@property | |
| > def _get_headers(self): | |
| 298,299c298,299 | |
| < @headers.setter | |
| < def headers(self, collection): | |
| --- | |
| > #@headers.setter | |
| > def _set_headers(self, collection): | |
| 308a309 | |
| > headers = property(_get_headers, _set_headers) | |
| 310,312c311,312 | |
| < | |
| < @property | |
| < def dict(self): | |
| --- | |
| > #@property | |
| > def _get_dict(self): | |
| 326,327c326,327 | |
| < @dict.setter | |
| < def dict(self, pickle): | |
| --- | |
| > #@dict.setter | |
| > def _set_dict(self, pickle): | |
| 354a355 | |
| > dict = property(_get_dict, _set_dict) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment