python - Script languages: Max. Line Length -


i have written script stores digital signatures in binaries , script files. question regarding scripts: currently, these signatures stored in 1 single line (a comment) such as:

#!/usr/bin/perl print "hello" print " world\n" #signature:asdasg13412sdflsal4sf etc........ 

the example perl, done scripting languages (perl, python, shell scripts etc.) question is: can trouble if length of line containing signature long? how interpreter handle this? if so, max. line length can use?

most scripting languages have long enough limits, if indeed have formal limit on length of lines. posix recommends 2048 minimum.

how long signatures? likely, not more 1024...in case, wouldn't worry. if doesn't work language, should report bug rather else.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -