Development of an internal social media platform with personalised dashboards for students
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.

suspicious_str_strip_call.py 216B

123456789
  1. """Suspicious str.strip calls."""
  2. __revision__ = 1
  3. ''.strip('yo')
  4. ''.strip()
  5. u''.strip('http://') # [bad-str-strip-call]
  6. u''.lstrip('http://') # [bad-str-strip-call]
  7. b''.rstrip('http://') # [bad-str-strip-call]