From 0ab0c0b50e6b6578d39df678c3282ad8db3041db Mon Sep 17 00:00:00 2001 From: sobolevn Date: Mon, 16 Aug 2021 21:29:01 +0300 Subject: [PATCH] Typo --- vm/src/exceptions.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vm/src/exceptions.rs b/vm/src/exceptions.rs index e41fab69a..e6985f0c8 100644 --- a/vm/src/exceptions.rs +++ b/vm/src/exceptions.rs @@ -531,7 +531,7 @@ macro_rules! extends_exception { $base_class_literal: literal, $docs: tt ) => { - simple_extends_exception!( + extends_exception!( $class_name, $class_name_literal, $base_class, @@ -585,11 +585,11 @@ macro_rules! extends_exception { } extends_exception! { - PyKeyboardInterrupt, - "KeyboardInterrupt", - PyBaseException, - "PyBaseException", - "Program interrupted by user." + PyKeyboardInterrupt, + "KeyboardInterrupt", + PyBaseException, + "PyBaseException", + "Program interrupted by user." } impl ExceptionZoo {