View Single Post
Old Jun 6th, 2006, 2:49 PM   #42
UnKnown X
Hobbyist Programmer
 
UnKnown X's Avatar
 
Join Date: Dec 2005
Location: Sandvika, Norway
Posts: 114
Rep Power: 0 UnKnown X is an unknown quantity at this point
Send a message via MSN to UnKnown X
I rarely comment the code itself, but I tend to explain what functions do and write huge lines that explain where in the code I am so I'll find it quickly later instead.

Python example:

# # # # # # # # # # # # # # # # # # # # #
# ------ IMPORTS ------------------------

import foo
import bar


# # # # # # # # # # # # # # # # # # # # #
# ------ ENCRYPT ------------------------
# ---- Encrypts text, etc. --------------

def encrypt(blah):
    # blah
UnKnown X is offline   Reply With Quote