diff options
author | davemds <dave@gurumeditation.it> | 2013-03-30 14:00:50 +0100 |
---|---|---|
committer | davemds <dave@gurumeditation.it> | 2013-03-30 14:00:50 +0100 |
commit | 90a73380d6f149503e3ad451260acd3622d4ca9c (patch) | |
tree | 28bb73724b689bb0fb736f323d3df068f198ed31 /CODING | |
parent | 16ecc8ca4b6136d8875d9a374c30c57015e8ef6d (diff) |
Python-EFL: CODING, explain better the choose
Diffstat (limited to 'CODING')
-rw-r--r-- | CODING | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,9 @@ Style | |||
4 | 4 | ||
5 | * For indentation, use *four space characters* per level of indentation. | 5 | * For indentation, use *four space characters* per level of indentation. |
6 | 6 | ||
7 | * When comparing C pointers, use == and != . This makes a visual distinction. | 7 | * When comparing C pointers, use == and != instead of the python operator "is". |
8 | This makes a visual distinction between C and py code and don't confuse the | ||
9 | reader as "==" and "is" has different meaning in python. | ||
8 | 10 | ||
9 | Tips | 11 | Tips |
10 | ==== | 12 | ==== |