Skip to content

Instantly share code, notes, and snippets.

View cilogi's full-sized avatar

Tim Niblett cilogi

  • cilogi
  • Scotland
View GitHub Profile
@WizKid
WizKid / gist:1170297
Created August 25, 2011 09:16
Remove comments in a JSON file
def removecomments(s):
inCommentSingle = False
inCommentMulti = False
inString = False
t = []
l = len(s)
i = 0
fromIndex = 0