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.

future_unicode_literals.py 174B

123456
  1. """Unicode literals in Python 2.*"""
  2. from __future__ import unicode_literals
  3. BAD_STRING = b'\u1234' # >= 2.7.4:[anomalous-unicode-escape-in-string]
  4. GOOD_STRING = '\u1234'