"test/srt/test_deepseek_v3_mtp.py" did not exist on "b520d0288863bb8ada2f8b4fc59445607942699e"
  1. 24 Feb, 2018 1 commit
  2. 26 Jan, 2018 1 commit
  3. 24 Jan, 2018 1 commit
    • cclauss's avatar
      Use r-string to avoid raising Python 3 SyntaxError · 65abca9a
      cclauss authored
      In Python 2 the string and the r-string behave the same:
      $ __python2__
      ```
      >>> '$\Uparrow$ '
      '$\\Uparrow$ '
      >>> r'$\Uparrow$ '
      '$\\Uparrow$ '
      >>> '$\Uparrow$ ' == r'$\Uparrow$ '
      True
      ```
      
      In Python 3 the string raises a Syntax Error while the r-string works just like Python 2.
      ```
      >>> '$\Uparrow$ '
        File "<stdin>", line 1
      SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 1-2: truncated \UXXXXXXXX escape
      >>> r'$\Uparrow$ '
      '$\\Uparrow$ '
      ```
      65abca9a
  4. 23 Jan, 2018 1 commit
  5. 22 Nov, 2017 3 commits
  6. 21 Sep, 2017 1 commit