Re: Any reliable obfurscator for Python 2.5

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gabriel Genellina

    Re: Any reliable obfurscator for Python 2.5

    En Sun, 20 Apr 2008 01:55:51 -0300, Banibrata Dutta <banibrata.dutt a@gmail.comescr ibió:
    Wanted to check if there is any known, reliable, FOSS/Libre -- Obfurscator
    for Python 2.5 code.
    Why do you want to do that in the first place?
    There is very few you can do to obfuscate Python code. You can't rename classes nor methods nor global variables nor argument names due to the dynamic nature of Python. All you can safely do is to remove comments and join simple statements using ;
    If you remove docstrings, some things may break. Even renaming local variables isn't safe in all cases.

    --
    Gabriel Genellina

Working...