summaryrefslogtreecommitdiff
path: root/modules/language/python/exceptions.scm
diff options
context:
space:
mode:
authorStefan Israelsson Tampe <stefan.itampe@gmail.com>2018-09-05 23:18:19 +0200
committerStefan Israelsson Tampe <stefan.itampe@gmail.com>2018-09-05 23:18:19 +0200
commitb950c0d70a1d2c95da8d60aca7af02bc50542a2b (patch)
treee74c4c755d05508356a85fb3d8127182c23e0281 /modules/language/python/exceptions.scm
parent7d099358d6fa37f8686da72bb7811d717293c96f (diff)
format strings added
Diffstat (limited to 'modules/language/python/exceptions.scm')
-rw-r--r--modules/language/python/exceptions.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/language/python/exceptions.scm b/modules/language/python/exceptions.scm
index 5b58f9e..0a3689f 100644
--- a/modules/language/python/exceptions.scm
+++ b/modules/language/python/exceptions.scm
@@ -13,7 +13,7 @@
ZeroDivisionError ArithmeticError
OverflowError RecursionError
Warning DeprecationWarning BytesWarning
- ResourceWarning
+ ResourceWarning UserWarning
UnicodeDecodeError LookupError IndentationError
KeyboardInterrupt MemoryError NameError
EOFError UnicodeError UnicodeEncodeError
@@ -127,3 +127,4 @@
(define-wr BytesWarning 'BytesWarning)
(define-wr DepricationWarning 'DeprecationWarning)
(define-wr ResourceWarning 'ResourceWarning)
+(define-wr UserWarning 'UserWarning)