python (3.11.7)
    e5                     @   	 d dl mZmZ d dlZd dlZd dlZd dlZd dlZd dlZd dl	m
Z
mZmZm
Z
 d dlmZ ddddd	d
dZ G d d
          Z G d de          Z G d de          Z G d de          Z G d de          Z G d de          Z G d de          ZdS )    )TestCasemockN)captured_stderrcaptured_stdout
script_helperfindfile)unlinkzCfruits = [
    "Apple",
    "Orange",
    "Banana",
print(fruits)
zLif True:
    print("hello")
  print("world")
else:
    print("else called")
zIif True:
 	print("hello")
	print("world")
else:
    print("else called")
zNif True:
    print("hello")
    print("world")
else:
    print("else called")
zGdef my_func():
	  print("hello world")
	  if True:
		print("If called")zLdef my_func():
		print("Hello world")
		if True:
	        print("If called"))incomplete_expressionwrong_indentednannynag_errored
error_freetab_space_errored_1tab_space_errored_2c                   $    e Zd Z	 ddZd Zd ZdS )TemporaryPyFile Nc                 "