Changes between Version 20 and Version 21 of DeveloperGuidelines/Eclipse
- Timestamp:
- 07/24/10 17:51:13 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Eclipse
v20 v21 60 60 * Use expressions (drag and drop from code) or right-click > watch 61 61 62 === Accessing private data === 63 Some data is marked as private to let other developers know they shouldn't access this directly 64 * e.g. in {{{s3xrc.py}}} we have {{{S3Resource.__set}}} & {{{S3Resource.__query}}} 65 This then means that Eclipse can't see these attributes as {{{self.__set}}}, etc. 66 67 Instead need to use: 68 {{{ 69 xxx._ClassName__AttributeName 70 }}} 71 e.g.: 72 {{{ 73 resource._S3Resource__query 74 resource._S3Resource__set 75 }}} 76 62 77 == Related Links == 63 78 * [wiki:DeveloperGuidelinesTips#Pythondebugging Debugging Web2Py]