You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
259 B

  1. import sys
  2. if sys.platform.startswith("win"):
  3. def quote(value):
  4. return u'"{}"'.format(u'{}'.format(value).replace(u'"', u'""'))
  5. else: # POSIX shell
  6. def quote(value):
  7. return u"'{}'".format(u'{}'.format(value).replace(u"'", u"'\\''"))