From 8dbd264725697248b78a6500334101a9ba691132 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 28 Dec 2018 09:51:46 +0100 Subject: [PATCH] Regex --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 31a68ca..f50bc8e 100644 --- a/README.md +++ b/README.md @@ -267,8 +267,8 @@ import re * **Use `'\\\\1'` or `r'\1'` for backreference.** * **Use `?` to make operators non-greedy.** -* **Parameter `'flags=re.IGNORECASE'` can be used with all functions.** -* **Parameter `'flags=re.DOTALL'` makes dot also accept newline.** +* **Parameter `flags=re.IGNORECASE` can be used with all functions.** +* **Parameter `flags=re.DOTALL` makes dot also accept newline.** ### Match Object ```python