回答編集履歴

2

re.MULTILINE は不要なので削除

2019/11/30 12:17

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
 
18
18
 
19
- test_re = re.compile(r'base64.*', flags=(re.MULTILINE | re.DOTALL))
19
+ test_re = re.compile(r'base64.*', flags=re.DOTALL)
20
20
 
21
21
 
22
22
 

1

説明追加

2019/11/30 12:17

投稿

shiracamus
shiracamus

スコア5406

test CHANGED
@@ -1,3 +1,9 @@
1
+ 公式ドキュメントより
2
+
3
+ https://docs.python.org/ja/3.6/howto/regex.html#compilation-flags
4
+
5
+
6
+
1
7
  ```python
2
8
 
3
9
  import re