From 10027e04b296d8baf135e8a3cf9ae5d689b76f74 Mon Sep 17 00:00:00 2001 From: Kritika Verma <95202116+SunSummoner@users.noreply.github.com> Date: Tue, 28 Feb 2023 23:54:45 +0530 Subject: [PATCH 1/2] Just some comments for understanding --- optimizer/neuroptimus.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/optimizer/neuroptimus.py b/optimizer/neuroptimus.py index 29527450..36f70eb1 100755 --- a/optimizer/neuroptimus.py +++ b/optimizer/neuroptimus.py @@ -1,5 +1,7 @@ import sys +#provides various functions and variables that are used to manipulate different parts of the Python runtime environment import traceback + import getopt def main(parameters): From 1dcb2d0fc60eeb82369074c1f32c43e4f152eadc Mon Sep 17 00:00:00 2001 From: Kritika Verma <95202116+SunSummoner@users.noreply.github.com> Date: Wed, 1 Mar 2023 12:31:49 +0530 Subject: [PATCH 2/2] Just added some comments --- optimizer/neuroptimus.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/optimizer/neuroptimus.py b/optimizer/neuroptimus.py index 36f70eb1..3d82b996 100755 --- a/optimizer/neuroptimus.py +++ b/optimizer/neuroptimus.py @@ -1,8 +1,10 @@ import sys #provides various functions and variables that are used to manipulate different parts of the Python runtime environment import traceback +#This module provides a standard interface to extract, format and print stack traces of Python programs. It exactly mimics the behavior of the Python interpreter when it prints a stack trace. This is useful when you want to print stack traces under program control, such as in a “wrapper” around the interpreter. import getopt +#like args[] in Java def main(parameters): """