소스 검색

Added tests for string formattings

Dmitry Vasiliev 17 년 전
부모
커밋
4a2bf5e853
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8
    0
      test.py

+ 8
- 0
test.py 파일 보기

67
 " \a\b\c\"\'\n\r \x34\077 \08 \xag"
67
 " \a\b\c\"\'\n\r \x34\077 \08 \xag"
68
 r" \" \' "
68
 r" \" \' "
69
 
69
 
70
+# Formattings
71
+
72
+" %f "
73
+
74
+"{0.name!r:b} {0[n]} {name!s:  }"
75
+
76
+"${test} ${test ${test}aname"
77
+
70
 # Doctests.
78
 # Doctests.
71
 
79
 
72
 """
80
 """