From 20d0c3d429271272463aa789e6a2d9693c23a695 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 20:49:19 +0200 Subject: [PATCH 01/15] get tests passing in 3.13 --- misc/test.sh | 31 +++++++++++++++++++++++++++++++ misc/travis_test.sh | 30 +----------------------------- tests/test_birdseye.py | 2 +- tests/test_interface.py | 31 ++++++++++++++++--------------- tests/test_utils.py | 17 ++++++++++++++--- tox.ini | 2 +- 6 files changed, 64 insertions(+), 49 deletions(-) create mode 100755 misc/test.sh diff --git a/misc/test.sh b/misc/test.sh new file mode 100755 index 0000000..d7ab5b5 --- /dev/null +++ b/misc/test.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +set -eux + +export DB=${DB:-sqlite} + +if [ ${DB} = sqlite ]; then + rm ~/.birdseye_test.db || true + export BIRDSEYE_DB=sqlite:///$HOME/.birdseye_test.db +elif [ ${DB} = postgres ]; then + psql -c 'DROP DATABASE IF EXISTS birdseye_test;' -U postgres + psql -c 'CREATE DATABASE birdseye_test;' -U postgres + export BIRDSEYE_DB="postgresql://postgres:@localhost/birdseye_test" +elif [ ${DB} = mysql ]; then + mysql -e 'DROP DATABASE IF EXISTS birdseye_test;' + mysql -e 'CREATE DATABASE birdseye_test;' + export BIRDSEYE_DB="mysql+mysqlconnector://root:@localhost/birdseye_test" +else + echo "Unknown database $DB" + exit 1 +fi + +export BIRDSEYE_SERVER_RUNNING=true +gunicorn -b 127.0.0.1:7777 birdseye.server:app & + +set +e + +pytest -vv +result=$? +kill $(ps aux | grep birdseye.server:app | grep -v grep | awk '{print $2}') +exit ${result} diff --git a/misc/travis_test.sh b/misc/travis_test.sh index 2821654..5ab7d22 100755 --- a/misc/travis_test.sh +++ b/misc/travis_test.sh @@ -1,35 +1,7 @@ #!/bin/bash -set -eux - sudo cp node_modules/chromedriver/lib/chromedriver/chromedriver /usr/local/bin/chromedriver pip install -e . -export DB=${DB:-sqlite} - -if [ ${DB} = sqlite ]; then - rm ~/.birdseye_test.db || true - export BIRDSEYE_DB=sqlite:///$HOME/.birdseye_test.db -elif [ ${DB} = postgres ]; then - psql -c 'DROP DATABASE IF EXISTS birdseye_test;' -U postgres - psql -c 'CREATE DATABASE birdseye_test;' -U postgres - export BIRDSEYE_DB="postgresql://postgres:@localhost/birdseye_test" -elif [ ${DB} = mysql ]; then - mysql -e 'DROP DATABASE IF EXISTS birdseye_test;' - mysql -e 'CREATE DATABASE birdseye_test;' - export BIRDSEYE_DB="mysql+mysqlconnector://root:@localhost/birdseye_test" -else - echo "Unknown database $DB" - exit 1 -fi - -export BIRDSEYE_SERVER_RUNNING=true -gunicorn -b 127.0.0.1:7777 birdseye.server:app & - -set +e - -pytest -vv -result=$? -kill $(ps aux | grep birdseye.server:app | grep -v grep | awk '{print $2}') -exit ${result} +./misc/test.sh diff --git a/tests/test_birdseye.py b/tests/test_birdseye.py index 9004b4d..701c902 100644 --- a/tests/test_birdseye.py +++ b/tests/test_birdseye.py @@ -446,7 +446,7 @@ def normalise_addresses(string): data=byteify(json.loads(call.function.data)), ), ) for call in calls] - version = PYPY * 'pypy' + sys.version[:3] + version = PYPY * 'pypy' + '.'.join(map(str, sys.version_info[:2])) path = os.path.join(os.path.dirname(__file__), 'golden-files', version, name + '.json') if os.getenv("FIX_TESTS"): diff --git a/tests/test_interface.py b/tests/test_interface.py index b606eac..8cc9b03 100644 --- a/tests/test_interface.py +++ b/tests/test_interface.py @@ -8,6 +8,7 @@ from selenium import webdriver from selenium.webdriver import ActionChains from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By from birdseye import eye from birdseye.server import app @@ -42,7 +43,7 @@ def setUp(self): chrome_options.add_argument("--headless") chrome_options.add_argument("--no-sandbox") self.driver = webdriver.Chrome(options=chrome_options) - self.driver.set_window_size(1400, 1000) + self.driver.set_window_size(1600, 1200) self.driver.implicitly_wait(2) if not os.environ.get('BIRDSEYE_SERVER_RUNNING'): Thread(target=lambda: app.run(port=7777)).start() @@ -60,26 +61,26 @@ def _do_test(self): # On the index page, note the links to the function and call driver.get('http://localhost:7777/') - function_link = driver.find_element_by_link_text('foo') + function_link = driver.find_element(By.LINK_TEXT, 'foo') function_url = function_link.get_attribute('href') - call_url = function_link.find_element_by_xpath('..//i/..').get_attribute('href') + call_url = function_link.find_element(By.XPATH, '..//i/..').get_attribute('href') # On the file page, check that the links still match - driver.find_element_by_partial_link_text('test_interface').click() - function_link = driver.find_element_by_link_text('foo') + driver.find_element(By.PARTIAL_LINK_TEXT, 'test_interface').click() + function_link = driver.find_element(By.LINK_TEXT, 'foo') self.assertEqual(function_link.get_attribute('href'), function_url) - self.assertEqual(call_url, function_link.find_element_by_xpath('..//i/..').get_attribute('href')) + self.assertEqual(call_url, function_link.find_element(By.XPATH, '..//i/..').get_attribute('href')) # Finally navigate to the call and check the original call_url function_link.click() - driver.find_element_by_css_selector('table a').click() + driver.find_element(By.CSS_SELECTOR, 'table a').click() self.assertEqual(driver.current_url, call_url) # Test hovering, clicking on expressions, and stepping through loops vals = {'i': 0, 'j': 0} - exprs = driver.find_elements_by_class_name('has_value') - expr_value = driver.find_element_by_id('box_value') + exprs = driver.find_elements(By.CLASS_NAME, 'has_value') + expr_value = driver.find_element(By.ID, 'box_value') expr_strings = [ 'i * 13 + j * 17', @@ -94,7 +95,7 @@ def find_expr(text): return find_by_text(text, exprs) def tree_nodes(root=driver): - return root.find_elements_by_class_name('jstree-node') + return root.find_elements(By.CLASS_NAME, 'jstree-node') def select(node, prefix, value_text): self.assertIn('box', classes(node)) @@ -118,7 +119,7 @@ def assert_classes(node, *cls): def step(loop, increment): selector = '.loop-navigator > .btn:%s-child' % ('first' if increment == -1 else 'last') - buttons = driver.find_elements_by_css_selector(selector) + buttons = driver.find_elements(By.CSS_SELECTOR, selector) self.assertEqual(len(buttons), 2) buttons[loop].click() vals['ij'[loop]] += increment @@ -131,7 +132,7 @@ def step(loop, increment): if n.text.startswith(expr + ' =')) self.assertEqual(node.text, '%s = int: %s' % (expr, value)) - stmt = find_by_text('assert j', driver.find_elements_by_class_name('stmt')) + stmt = find_by_text('assert j', driver.find_elements(By.CLASS_NAME, 'stmt')) assert_classes(stmt, 'stmt', 'stmt_uncovered', 'box') step(0, 1) @@ -148,7 +149,7 @@ def step(loop, increment): # Expanding values x_node = find_expr('x') tree_node = select(x_node, 'x = list: ', '[1, 3, 5, ..., 25, 27, 29]') - tree_node.find_element_by_class_name('jstree-ocl').click() # expand + tree_node.find_element(By.CLASS_NAME, 'jstree-ocl').click() # expand sleep(0.2) self.assertEqual([n.text for n in tree_nodes(tree_node)], ['len() = 15', @@ -164,8 +165,8 @@ def step(loop, increment): '14 = int: 29']), # Click on an inner call - find_expr('bar()').find_element_by_class_name('inner-call').click() - self.assertEqual(driver.find_element_by_tag_name('h2').text, + find_expr('bar()').find_element(By.CLASS_NAME, 'inner-call').click() + self.assertEqual(driver.find_element(By.TAG_NAME, 'h2').text, 'Call to function: bar') def tearDown(self): diff --git a/tests/test_utils.py b/tests/test_utils.py index 41fb1f8..50a8e34 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -116,7 +116,12 @@ def read(): # Wrong encodings write(u'# coding=utf8\né'.encode('gbk')) - self.assertRaises(UnicodeDecodeError, read) + try: + result = read() + except UnicodeDecodeError: + pass + else: + assert result == '' write(u'# coding=gbk\né'.encode('utf8')) self.assertFalse(u'é' in read()) @@ -130,7 +135,12 @@ def read(): # The lack of an encoding when one is needed # ultimately raises a SyntaxError - self.assertRaises(SyntaxError, read) + try: + result = read() + except SyntaxError: + pass + else: + assert result == '' def test_source_without_decorators(self): source = read_source_file(__file__) @@ -146,7 +156,8 @@ def test_cheap_repr(self): arr = arr.reshape((100, 100)) df = pd.DataFrame(arr) series = df[0] - self.assertEqual(cheap_repr(series), "0 = 0; 1 = 100; 2 = 200; ...; 97 = 9700; 98 = 9800; 99 = 9900") + self.assertEqual(cheap_repr(series), + "0 = np.int64(0); 1 = np.int64(100); 2 = np.int64(200); ...; 97 = np.int64(9700); 98 = np.int64(9800); 99 = np.int64(9900)") def test_read_source_file_as_string(self): import linecache diff --git a/tox.ini b/tox.ini index 68663a0..31e0442 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py35,py36,py37,py38,py39 +envlist = py38,py39,py310,py311,py312,py313 [testenv] deps = From d3a2ce47d49b7ccfc0537b9d6bf67f784c43f7e1 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 20:49:22 +0200 Subject: [PATCH 02/15] get tests passing in 3.13 --- tests/golden-files/3.13/gold.json | 13961 ++++++++++++++++++++++++++ tests/golden-files/3.13/traced.json | 1821 ++++ 2 files changed, 15782 insertions(+) create mode 100644 tests/golden-files/3.13/gold.json create mode 100644 tests/golden-files/3.13/traced.json diff --git a/tests/golden-files/3.13/gold.json b/tests/golden-files/3.13/gold.json new file mode 100644 index 0000000..fa95f5e --- /dev/null +++ b/tests/golden-files/3.13/gold.json @@ -0,0 +1,13961 @@ +[ + { + "arguments": [], + "data": { + "loop_iterations": { + "240": [ + { + "index": 0, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 1, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 97, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 98, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 99, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + } + ], + "340": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "343": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "347": [ + { + "index": 0, + "loops": {} + } + ], + "46": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ] + } + }, + { + "index": 97, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 191, + "loops": {} + }, + { + "index": 192, + "loops": {} + }, + { + "index": 193, + "loops": {} + } + ] + } + }, + { + "index": 98, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 193, + "loops": {} + }, + { + "index": 194, + "loops": {} + }, + { + "index": 195, + "loops": {} + } + ] + } + }, + { + "index": 99, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 195, + "loops": {} + }, + { + "index": 196, + "loops": {} + }, + { + "index": 197, + "loops": {} + } + ] + } + } + ], + "47": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "66": [ + { + "index": 0, + "loops": {} + } + ] + }, + "node_values": { + "122": [ + "True", + "bool", + {} + ], + "126": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "127": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "128": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "130": [ + "range(0, 6)", + "range", + { + "len": 6 + } + ], + "131": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "132": { + "1": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "134": [ + "", + "MyClass", + { + "inner_calls": [ + "test_id_5" + ] + } + ], + "136": [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "3", + [ + "[3, 4, 5, ..., 100, 101, 102]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "3", + "int", + {} + ] + ], + [ + "1", + [ + "4", + "int", + {} + ] + ], + [ + "2", + [ + "5", + "int", + {} + ] + ], + [ + "97", + [ + "100", + "int", + {} + ] + ], + [ + "98", + [ + "101", + "int", + {} + ] + ], + [ + "99", + [ + "102", + "int", + {} + ] + ] + ] + ], + [ + "4", + [ + "[4, 5, 6, ..., 101, 102, 103]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "4", + "int", + {} + ] + ], + [ + "1", + [ + "5", + "int", + {} + ] + ], + [ + "2", + [ + "6", + "int", + {} + ] + ], + [ + "97", + [ + "101", + "int", + {} + ] + ], + [ + "98", + [ + "102", + "int", + {} + ] + ], + [ + "99", + [ + "103", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 192, 193, 194]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "97", + [ + "192", + "int", + {} + ] + ], + [ + "98", + [ + "193", + "int", + {} + ] + ], + [ + "99", + [ + "194", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 193, 194, 195]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "97", + [ + "193", + "int", + {} + ] + ], + [ + "98", + [ + "194", + "int", + {} + ] + ], + [ + "99", + [ + "195", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ], + "137": [ + "6", + "int", + {} + ], + "138": [ + "None", + "NoneType", + {} + ], + "139": [ + "None", + "NoneType", + {} + ], + "141": [ + "", + -2, + {} + ], + "142": [ + "None", + "NoneType", + {} + ], + "143": [ + "True", + "bool", + {} + ], + "144": [ + "True", + "bool", + {} + ], + "145": [ + "True", + "bool", + {} + ], + "151": [ + "True", + "bool", + {} + ], + "153": [ + "None", + "NoneType", + {} + ], + "154": [ + "True", + "bool", + {} + ], + "155": [ + "True", + "bool", + {} + ], + "156": [ + "ValueError", + -1, + {} + ], + "160": [ + "", + -2, + {} + ], + "162": { + "0": [ + "", + -2, + {} + ] + }, + "163": [ + "True", + "bool", + {} + ], + "166": [ + "True", + "bool", + {} + ], + "168": [ + "", + "generator", + {} + ], + "169": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_11" + ] + } + ], + "170": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_13" + ] + } + ], + "213": [ + "6", + "int", + { + "inner_calls": [ + "test_id_2" + ] + } + ], + "221": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "223": { + "0": [ + "range(0, 0)", + "range", + { + "len": 0 + } + ], + "1": [ + "range(0, 2)", + "range", + { + "len": 2 + } + ], + "2": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "3": [ + "range(0, 194)", + "range", + { + "len": 194 + } + ], + "4": [ + "range(0, 196)", + "range", + { + "len": 196 + } + ], + "5": [ + "range(0, 198)", + "range", + { + "len": 198 + } + ] + }, + "224": { + "1": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ] + }, + "2": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "3": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "4": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "5": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + } + }, + "225": { + "1": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ] + }, + "2": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "3": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "4": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "5": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + } + }, + "229": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "231": { + "1": [ + "False", + "bool", + {} + ], + "3": [ + "True", + "bool", + {} + ] + }, + "232": { + "3": [ + "", + -2, + {} + ] + }, + "234": [ + "", + "MyClass", + {} + ], + "236": [ + "", + "MyClass", + {} + ], + "237": [ + "", + "MyClass", + {} + ], + "239": { + "0": [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "95", + [ + "95", + "int", + {} + ] + ], + [ + "96", + [ + "96", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ], + "1": [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ], + "2": [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ], + "3": [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ], + "4": [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ], + "5": [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + }, + "240": [ + "", + -2, + {} + ], + "242": [ + ". at 0xABC>", + "generator", + {} + ], + "243": [ + "", + "function", + {} + ], + "244": [ + "{0, 1, 2, 3}", + "set", + { + "len": 4 + }, + [ + "<0>", + [ + "0", + "int", + {} + ] + ], + [ + "<1>", + [ + "1", + "int", + {} + ] + ], + [ + "<2>", + [ + "2", + "int", + {} + ] + ], + [ + "<3>", + [ + "3", + "int", + {} + ] + ] + ], + "245": [ + "", + "function", + {} + ], + "246": [ + "{0: 0}", + "dict", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ], + "247": [ + "", + "MyClass", + {}, + [ + "list", + [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ] + ] + ], + "248": [ + "", + "function", + {} + ], + "249": [ + "", + "SlotClass", + { + "inner_calls": [ + "test_id_8" + ] + }, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ], + "250": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "inner_calls": [ + "test_id_9" + ], + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ], + "252": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ], + "253": [ + "[1, 2, {'k': 23}]", + "list", + { + "inner_calls": [ + "test_id_10" + ], + "len": 3 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ] + ] + ], + "256": [ + "3", + "int", + {} + ], + "261": [ + "6", + "int", + {} + ], + "265": [ + "", + "function", + {} + ], + "269": [ + "2", + "int", + {} + ], + "272": [ + "(1, 2)", + "tuple", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ], + "275": [ + "ValueError()", + "ValueError", + {} + ], + "280": [ + "", + -2, + {} + ], + "281": [ + "None", + "NoneType", + {} + ], + "282": [ + "8", + "int", + {} + ], + "286": [ + "4", + "int", + {} + ], + "290": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "291": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "292": [ + "", + "generator", + {} + ], + "293": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "294": [ + "", + "generator", + {} + ], + "314": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "317": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "321": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "194", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "198", + "int", + {} + ] + }, + "322": { + "1": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ] + }, + "2": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "3": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "4": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "5": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + } + }, + "323": { + "1": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ] + }, + "2": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "3": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "4": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "5": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + } + }, + "325": { + "1": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "327": { + "0": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "328": { + "1": [ + "1", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "331": [ + "", + "type", + {}, + [ + "__add__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__enter__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__exit__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__firstlineno__", + [ + "49", + "int", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__static_attributes__", + [ + "()", + "tuple", + { + "len": 0 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ], + "332": [ + "", + "type", + {}, + [ + "__add__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__enter__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__exit__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__firstlineno__", + [ + "49", + "int", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__static_attributes__", + [ + "()", + "tuple", + { + "len": 0 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ], + "334": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "3", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "100", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "3", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "100", + "int", + {} + ], + "5": [ + "101", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "194", + "int", + {} + ], + "4": [ + "195", + "int", + {} + ], + "5": [ + "196", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "100", + "int", + {} + ], + "3": [ + "195", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "197", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "100", + "int", + {} + ], + "2": [ + "101", + "int", + {} + ], + "3": [ + "196", + "int", + {} + ], + "4": [ + "197", + "int", + {} + ], + "5": [ + "198", + "int", + {} + ] + } + }, + "335": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "337": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "339": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "340": [ + "", + -2, + {} + ], + "342": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "343": [ + "", + -2, + {} + ], + "345": { + "0": [ + "0", + "int", + {} + ] + }, + "346": { + "0": [ + "0", + "int", + {} + ] + }, + "347": [ + "", + -2, + {} + ], + "350": [ + "", + "MyClass", + {}, + [ + "list", + [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ] + ] + ], + "352": [ + "", + "SlotClass", + {}, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ], + "353": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "354": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "358": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "360": [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ], + "362": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "370": [ + "'1 + 2'", + "str", + { + "len": 5 + } + ], + "385": [ + "", + "function", + {} + ], + "386": [ + ". at 0xABC>", + "function", + {} + ], + "405": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[[]]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "2": [ + "[[], [1, 2]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", + "list", + { + "len": 97 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "94", + [ + "[94, 95, 96, ..., 279, 280, 281]", + "list", + { + "len": 188 + }, + [ + "0", + [ + "94", + "int", + {} + ] + ], + [ + "1", + [ + "95", + "int", + {} + ] + ], + [ + "2", + [ + "96", + "int", + {} + ] + ], + [ + "185", + [ + "279", + "int", + {} + ] + ], + [ + "186", + [ + "280", + "int", + {} + ] + ], + [ + "187", + [ + "281", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "187", + [ + "282", + "int", + {} + ] + ], + [ + "188", + [ + "283", + "int", + {} + ] + ], + [ + "189", + [ + "284", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "187", + [ + "282", + "int", + {} + ] + ], + [ + "188", + [ + "283", + "int", + {} + ] + ], + [ + "189", + [ + "284", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ], + [ + "193", + [ + "290", + "int", + {} + ] + ] + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ], + [ + "193", + [ + "290", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ], + [ + "194", + [ + "292", + "int", + {} + ] + ], + [ + "195", + [ + "293", + "int", + {} + ] + ] + ] + ] + ] + }, + "411": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "412": { + "1": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ] + }, + "2": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ] + }, + "3": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "4": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "5": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + } + }, + "413": { + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "3", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "5", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "288", + "int", + {} + ], + "4": [ + "289", + "int", + {} + ], + "5": [ + "290", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "100", + "int", + {} + ], + "3": [ + "291", + "int", + {} + ], + "4": [ + "292", + "int", + {} + ], + "5": [ + "293", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "100", + "int", + {} + ], + "2": [ + "101", + "int", + {} + ], + "3": [ + "294", + "int", + {} + ], + "4": [ + "295", + "int", + {} + ], + "5": [ + "296", + "int", + {} + ] + } + }, + "414": { + "1": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ] + }, + "2": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ] + }, + "3": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + }, + "4": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + }, + "5": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + } + }, + "415": { + "1": { + "0": [ + "[[], [1]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ] + ] + }, + "2": { + "0": [ + "[[], [1, 2], [2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ] + ] + }, + "3": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ] + ] + }, + "4": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ] + ] + }, + "5": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 294, 295, 296]", + "list", + { + "len": 198 + } + ] + ] + ] + } + }, + "416": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ] + }, + "417": { + "1": [ + "11.0", + "float", + {} + ], + "3": [ + "11.0", + "float", + {} + ] + }, + "422": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "1": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "3": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "4": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "5": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "424": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "0", + "int", + {} + ], + "2": [ + "0", + "int", + {} + ], + "3": [ + "0", + "int", + {} + ], + "4": [ + "0", + "int", + {} + ], + "5": [ + "0", + "int", + {} + ] + }, + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "1", + "int", + {} + ], + "3": [ + "1", + "int", + {} + ], + "4": [ + "1", + "int", + {} + ], + "5": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "2", + "int", + {} + ], + "4": [ + "2", + "int", + {} + ], + "5": [ + "2", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "97", + "int", + {} + ], + "2": [ + "97", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "97", + "int", + {} + ], + "5": [ + "97", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "98", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "98", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "426": { + "0": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "1": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "2": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "3": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "4": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "5": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ] + }, + "432": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "435": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "439": [ + "range(0, 1)", + "range", + { + "len": 1 + } + ], + "44": [ + "", + -2, + {} + ], + "441": [ + "", + "type", + {}, + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__firstlineno__", + [ + "19", + "int", + {} + ] + ], + [ + "__init__", + [ + "", + "function", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__slots__", + [ + "('slot1',)", + "tuple", + { + "len": 1 + }, + [ + "0", + [ + "'slot1'", + "str", + { + "len": 5 + } + ] + ] + ] + ], + [ + "__static_attributes__", + [ + "('slot1',)", + "tuple", + { + "len": 1 + }, + [ + "0", + [ + "'slot1'", + "str", + { + "len": 5 + } + ] + ] + ] + ], + [ + "slot1", + [ + "", + "member_descriptor", + {} + ] + ] + ], + "444": [ + "range(0, 1000)", + "range", + { + "len": 1000 + } + ], + "448": [ + "range(0, 1000)", + "range", + { + "len": 1000 + } + ], + "45": [ + "", + -2, + {} + ], + "46": [ + "", + -2, + {} + ], + "47": [ + "", + -2, + {} + ], + "477": { + "1": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[1]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ] + ] + }, + "2": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[2]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ] + ], + "2": [ + "[2, 3]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ] + ], + "3": [ + "[2, 3, 4]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ] + ] + }, + "3": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[97]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ] + ], + "2": [ + "[97, 98]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ] + ], + "3": [ + "[97, 98, 99, ..., 285, 286, 287]", + "list", + { + "len": 191 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "188", + [ + "285", + "int", + {} + ] + ], + [ + "189", + [ + "286", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ] + ], + "4": [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "189", + [ + "286", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ] + ], + "5": [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ] + ] + }, + "4": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[98]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ] + ], + "2": [ + "[98, 99]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ] + ], + "3": [ + "[98, 99, 100, ..., 288, 289, 290]", + "list", + { + "len": 193 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "190", + [ + "288", + "int", + {} + ] + ], + [ + "191", + [ + "289", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ] + ], + "4": [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "191", + [ + "289", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ] + ], + "5": [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ], + [ + "194", + [ + "292", + "int", + {} + ] + ] + ] + }, + "5": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[99]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ] + ], + "2": [ + "[99, 100]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ] + ], + "3": [ + "[99, 100, 101, ..., 291, 292, 293]", + "list", + { + "len": 195 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "192", + [ + "291", + "int", + {} + ] + ], + [ + "193", + [ + "292", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ] + ], + "4": [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "193", + [ + "292", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ], + [ + "195", + [ + "294", + "int", + {} + ] + ] + ], + "5": [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ], + [ + "195", + [ + "294", + "int", + {} + ] + ], + [ + "196", + [ + "295", + "int", + {} + ] + ] + ] + } + }, + "479": { + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "2", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "97", + "int", + {} + ], + "2": [ + "97", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "97", + "int", + {} + ], + "5": [ + "97", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "98", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "98", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "48": [ + "", + -2, + {} + ], + "481": { + "1": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "3": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "191", + "int", + {} + ], + "4": [ + "192", + "int", + {} + ], + "5": [ + "193", + "int", + {} + ] + }, + "4": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "193", + "int", + {} + ], + "4": [ + "194", + "int", + {} + ], + "5": [ + "195", + "int", + {} + ] + }, + "5": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "195", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "197", + "int", + {} + ] + } + }, + "485": { + "0": [ + "ZeroDivisionError: division by zero", + -1, + {} + ], + "1": [ + "1.0", + "float", + {} + ], + "2": [ + "ZeroDivisionError: division by zero", + -1, + {} + ], + "3": [ + "1.0", + "float", + {} + ] + }, + "49": [ + "", + -2, + {} + ], + "50": [ + "", + -2, + {} + ], + "51": [ + "", + -2, + {} + ], + "52": [ + "", + -2, + {} + ], + "526": { + "1": { + "0": [ + "[[], []]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1]", + "list", + { + "len": 1 + } + ] + ] + ] + }, + "2": { + "0": [ + "[[], [1, 2], []]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4]", + "list", + { + "len": 3 + } + ] + ] + ] + }, + "3": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 285, 286, 287]", + "list", + { + "len": 191 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + } + ] + ] + ] + }, + "4": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 288, 289, 290]", + "list", + { + "len": 193 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + } + ] + ] + ] + }, + "5": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 291, 292, 293]", + "list", + { + "len": 195 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + } + ] + ] + ] + } + }, + "53": [ + "", + -2, + { + "inner_calls": [ + "test_id_6", + "test_id_7" + ] + } + ], + "533": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "0", + "int", + {} + ], + "3": [ + "1", + "int", + {} + ] + }, + "54": [ + "", + -2, + {} + ], + "546": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "55": [ + "", + -2, + {} + ], + "56": [ + "", + -2, + {} + ], + "57": [ + "", + -2, + {} + ], + "58": [ + "", + -2, + {} + ], + "59": [ + "", + -2, + {} + ], + "60": [ + "", + -2, + {} + ], + "61": [ + "", + -2, + {} + ], + "62": [ + "", + -2, + {} + ], + "63": [ + "", + -2, + {} + ], + "64": [ + "", + -2, + {} + ], + "65": [ + "", + -2, + {} + ], + "66": [ + "", + -2, + {} + ], + "67": [ + "", + -2, + {} + ], + "68": [ + "", + -2, + {} + ], + "69": [ + "", + -2, + {} + ], + "70": [ + "", + -2, + {} + ], + "71": [ + "", + -2, + {} + ], + "72": [ + "", + -2, + {} + ], + "73": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 65, + "start": 64, + "tree_index": 46 + }, + { + "end": 205, + "start": 204, + "tree_index": 47 + }, + { + "end": 1254, + "start": 1250, + "tree_index": 66 + }, + { + "end": 118, + "start": 117, + "tree_index": 128 + }, + { + "end": 438, + "start": 437, + "tree_index": 240 + }, + { + "end": 417, + "start": 416, + "tree_index": 335 + }, + { + "end": 471, + "start": 470, + "tree_index": 340 + }, + { + "end": 503, + "start": 502, + "tree_index": 343 + }, + { + "end": 539, + "start": 538, + "tree_index": 347 + } + ], + "node_loops": { + "127": [ + 46 + ], + "128": [ + 46 + ], + "131": [ + 47 + ], + "132": [ + 47 + ], + "162": [ + 66 + ], + "221": [ + 46 + ], + "223": [ + 46 + ], + "224": [ + 46, + 128 + ], + "225": [ + 46, + 128 + ], + "229": [ + 47 + ], + "231": [ + 47 + ], + "232": [ + 47 + ], + "239": [ + 240 + ], + "317": [ + 46 + ], + "320": [ + 46 + ], + "321": [ + 46 + ], + "322": [ + 46, + 128 + ], + "323": [ + 46, + 128 + ], + "325": [ + 47 + ], + "326": [ + 47 + ], + "327": [ + 47 + ], + "328": [ + 47 + ], + "334": [ + 240, + 335 + ], + "335": [ + 240 + ], + "339": [ + 340 + ], + "342": [ + 343 + ], + "345": [ + 347 + ], + "346": [ + 347 + ], + "405": [ + 46 + ], + "411": [ + 46 + ], + "412": [ + 46, + 128 + ], + "413": [ + 46, + 128 + ], + "414": [ + 46, + 128 + ], + "415": [ + 46, + 128 + ], + "416": [ + 47 + ], + "417": [ + 47 + ], + "422": [ + 240, + 335 + ], + "424": [ + 240, + 335 + ], + "426": [ + 240 + ], + "477": [ + 46, + 128 + ], + "479": [ + 46, + 128 + ], + "481": [ + 46, + 128 + ], + "485": [ + 47 + ], + "491": [ + 240 + ], + "526": [ + 46, + 128 + ], + "533": [ + 47 + ], + "546": [ + 47 + ] + }, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 40, + "start": 16, + "tree_index": 44 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 55, + "start": 46, + "tree_index": 45 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 194, + "start": 56, + "tree_index": 46 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 359, + "start": 196, + "tree_index": 47 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 390, + "start": 365, + "tree_index": 48 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 453, + "start": 395, + "tree_index": 49 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 484, + "start": 458, + "tree_index": 50 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 517, + "start": 489, + "tree_index": 51 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 553, + "start": 522, + "tree_index": 52 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 578, + "start": 554, + "tree_index": 53 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 605, + "start": 583, + "tree_index": 54 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 812, + "start": 611, + "tree_index": 55 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 880, + "start": 818, + "tree_index": 56 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 922, + "start": 886, + "tree_index": 57 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 933, + "start": 928, + "tree_index": 58 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 944, + "start": 938, + "tree_index": 59 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 962, + "start": 949, + "tree_index": 60 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 972, + "start": 967, + "tree_index": 61 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1002, + "start": 978, + "tree_index": 62 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1032, + "start": 1008, + "tree_index": 63 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1067, + "start": 1037, + "tree_index": 64 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1238, + "start": 1069, + "tree_index": 65 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 1269, + "start": 1240, + "tree_index": 66 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1307, + "start": 1275, + "tree_index": 67 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1321, + "start": 1313, + "tree_index": 68 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1331, + "start": 1326, + "tree_index": 69 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1349, + "start": 1336, + "tree_index": 70 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1364, + "start": 1355, + "tree_index": 71 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1381, + "start": 1369, + "tree_index": 72 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1398, + "start": 1386, + "tree_index": 73 + }, + { + "classes": [], + "depth": 3, + "end": 40, + "start": 23, + "tree_index": 122 + }, + { + "classes": [], + "depth": 3, + "end": 79, + "start": 69, + "tree_index": 126 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 104, + "start": 89, + "tree_index": 127 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 3, + "end": 194, + "start": 105, + "tree_index": 128 + }, + { + "classes": [], + "depth": 3, + "end": 217, + "start": 209, + "tree_index": 130 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 322, + "start": 219, + "tree_index": 131 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 359, + "start": 323, + "tree_index": 132 + }, + { + "classes": [], + "depth": 3, + "end": 390, + "start": 369, + "tree_index": 134 + }, + { + "classes": [], + "depth": 3, + "end": 453, + "start": 404, + "tree_index": 136 + }, + { + "classes": [], + "depth": 3, + "end": 484, + "start": 458, + "tree_index": 137 + }, + { + "classes": [], + "depth": 3, + "end": 517, + "start": 489, + "tree_index": 138 + }, + { + "classes": [], + "depth": 3, + "end": 553, + "start": 522, + "tree_index": 139 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 578, + "start": 574, + "tree_index": 141 + }, + { + "classes": [], + "depth": 3, + "end": 605, + "start": 583, + "tree_index": 142 + }, + { + "classes": [], + "depth": 3, + "end": 812, + "start": 618, + "tree_index": 143 + }, + { + "classes": [], + "depth": 3, + "end": 880, + "start": 825, + "tree_index": 144 + }, + { + "classes": [], + "depth": 3, + "end": 922, + "start": 893, + "tree_index": 145 + }, + { + "classes": [], + "depth": 3, + "end": 962, + "start": 956, + "tree_index": 151 + }, + { + "classes": [], + "depth": 3, + "end": 1002, + "start": 978, + "tree_index": 153 + }, + { + "classes": [], + "depth": 3, + "end": 1032, + "start": 1015, + "tree_index": 154 + }, + { + "classes": [], + "depth": 3, + "end": 1067, + "start": 1044, + "tree_index": 155 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1104, + "start": 1086, + "tree_index": 156 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1238, + "start": 1231, + "tree_index": 160 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1269, + "start": 1264, + "tree_index": 162 + }, + { + "classes": [], + "depth": 3, + "end": 1307, + "start": 1282, + "tree_index": 163 + }, + { + "classes": [], + "depth": 3, + "end": 1349, + "start": 1343, + "tree_index": 166 + }, + { + "classes": [], + "depth": 3, + "end": 1364, + "start": 1359, + "tree_index": 168 + }, + { + "classes": [], + "depth": 3, + "end": 1381, + "start": 1369, + "tree_index": 169 + }, + { + "classes": [], + "depth": 3, + "end": 1398, + "start": 1386, + "tree_index": 170 + }, + { + "classes": [], + "depth": 4, + "end": 35, + "start": 23, + "tree_index": 213 + }, + { + "classes": [], + "depth": 4, + "end": 74, + "start": 69, + "tree_index": 219 + }, + { + "classes": [], + "depth": 4, + "end": 104, + "start": 89, + "tree_index": 221 + }, + { + "classes": [], + "depth": 4, + "end": 134, + "start": 122, + "tree_index": 223 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 170, + "start": 148, + "tree_index": 224 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 194, + "start": 183, + "tree_index": 225 + }, + { + "classes": [], + "depth": 4, + "end": 214, + "start": 209, + "tree_index": 227 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 267, + "start": 244, + "tree_index": 229 + }, + { + "classes": [], + "depth": 4, + "end": 340, + "start": 334, + "tree_index": 231 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 359, + "start": 354, + "tree_index": 232 + }, + { + "classes": [], + "depth": 4, + "end": 378, + "start": 369, + "tree_index": 234 + }, + { + "classes": [], + "depth": 4, + "end": 390, + "start": 381, + "tree_index": 236 + }, + { + "classes": [], + "depth": 4, + "end": 396, + "start": 395, + "tree_index": 237 + }, + { + "classes": [], + "depth": 4, + "end": 432, + "start": 405, + "tree_index": 239 + }, + { + "classes": [ + "loop" + ], + "depth": 4, + "end": 452, + "start": 433, + "tree_index": 240 + }, + { + "classes": [], + "depth": 4, + "end": 461, + "start": 458, + "tree_index": 241 + }, + { + "classes": [], + "depth": 4, + "end": 484, + "start": 463, + "tree_index": 242 + }, + { + "classes": [], + "depth": 4, + "end": 494, + "start": 489, + "tree_index": 243 + }, + { + "classes": [], + "depth": 4, + "end": 516, + "start": 495, + "tree_index": 244 + }, + { + "classes": [], + "depth": 4, + "end": 527, + "start": 522, + "tree_index": 245 + }, + { + "classes": [], + "depth": 4, + "end": 552, + "start": 528, + "tree_index": 246 + }, + { + "classes": [], + "depth": 4, + "end": 564, + "start": 563, + "tree_index": 247 + }, + { + "classes": [], + "depth": 4, + "end": 588, + "start": 583, + "tree_index": 248 + }, + { + "classes": [], + "depth": 4, + "end": 604, + "start": 589, + "tree_index": 249 + }, + { + "classes": [], + "depth": 4, + "end": 729, + "start": 618, + "tree_index": 250 + }, + { + "classes": [], + "depth": 4, + "end": 812, + "start": 733, + "tree_index": 252 + }, + { + "classes": [], + "depth": 4, + "end": 859, + "start": 825, + "tree_index": 253 + }, + { + "classes": [], + "depth": 4, + "end": 917, + "start": 893, + "tree_index": 256 + }, + { + "classes": [], + "depth": 4, + "end": 957, + "start": 956, + "tree_index": 261 + }, + { + "classes": [], + "depth": 4, + "end": 983, + "start": 978, + "tree_index": 265 + }, + { + "classes": [], + "depth": 4, + "end": 1027, + "start": 1015, + "tree_index": 269 + }, + { + "classes": [], + "depth": 4, + "end": 1057, + "start": 1044, + "tree_index": 272 + }, + { + "classes": [], + "depth": 4, + "end": 1104, + "start": 1092, + "tree_index": 275 + }, + { + "classes": [], + "depth": 4, + "end": 1130, + "start": 1116, + "tree_index": 276 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1149, + "start": 1145, + "tree_index": 277 + }, + { + "classes": [], + "depth": 4, + "end": 1170, + "start": 1161, + "tree_index": 278 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1184, + "start": 1180, + "tree_index": 279 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1209, + "start": 1205, + "tree_index": 280 + }, + { + "classes": [], + "depth": 4, + "end": 1238, + "start": 1231, + "tree_index": 281 + }, + { + "classes": [], + "depth": 4, + "end": 1302, + "start": 1282, + "tree_index": 282 + }, + { + "classes": [], + "depth": 4, + "end": 1344, + "start": 1343, + "tree_index": 286 + }, + { + "classes": [], + "depth": 4, + "end": 1362, + "start": 1359, + "tree_index": 290 + }, + { + "classes": [], + "depth": 4, + "end": 1378, + "start": 1369, + "tree_index": 291 + }, + { + "classes": [], + "depth": 4, + "end": 1380, + "start": 1379, + "tree_index": 292 + }, + { + "classes": [], + "depth": 4, + "end": 1395, + "start": 1386, + "tree_index": 293 + }, + { + "classes": [], + "depth": 4, + "end": 1397, + "start": 1396, + "tree_index": 294 + }, + { + "classes": [], + "depth": 5, + "end": 32, + "start": 23, + "tree_index": 314 + }, + { + "classes": [], + "depth": 5, + "end": 100, + "start": 89, + "tree_index": 317 + }, + { + "classes": [], + "depth": 5, + "end": 127, + "start": 122, + "tree_index": 320 + }, + { + "classes": [], + "depth": 5, + "end": 133, + "start": 128, + "tree_index": 321 + }, + { + "classes": [], + "depth": 5, + "end": 170, + "start": 148, + "tree_index": 322 + }, + { + "classes": [], + "depth": 5, + "end": 194, + "start": 183, + "tree_index": 323 + }, + { + "classes": [], + "depth": 5, + "end": 267, + "start": 244, + "tree_index": 325 + }, + { + "classes": [], + "depth": 5, + "end": 300, + "start": 283, + "tree_index": 326 + }, + { + "classes": [ + "stmt" + ], + "depth": 5, + "end": 322, + "start": 314, + "tree_index": 327 + }, + { + "classes": [], + "depth": 5, + "end": 335, + "start": 334, + "tree_index": 328 + }, + { + "classes": [], + "depth": 5, + "end": 376, + "start": 369, + "tree_index": 331 + }, + { + "classes": [], + "depth": 5, + "end": 388, + "start": 381, + "tree_index": 332 + }, + { + "classes": [], + "depth": 5, + "end": 411, + "start": 406, + "tree_index": 334 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 431, + "start": 412, + "tree_index": 335 + }, + { + "classes": [], + "depth": 5, + "end": 452, + "start": 442, + "tree_index": 337 + }, + { + "classes": [], + "depth": 5, + "end": 465, + "start": 464, + "tree_index": 339 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 483, + "start": 466, + "tree_index": 340 + }, + { + "classes": [], + "depth": 5, + "end": 497, + "start": 496, + "tree_index": 342 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 515, + "start": 498, + "tree_index": 343 + }, + { + "classes": [], + "depth": 5, + "end": 530, + "start": 529, + "tree_index": 345 + }, + { + "classes": [], + "depth": 5, + "end": 533, + "start": 532, + "tree_index": 346 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 551, + "start": 534, + "tree_index": 347 + }, + { + "classes": [], + "depth": 5, + "end": 590, + "start": 589, + "tree_index": 350 + }, + { + "classes": [], + "depth": 5, + "end": 604, + "start": 593, + "tree_index": 352 + }, + { + "classes": [], + "depth": 5, + "end": 630, + "start": 618, + "tree_index": 353 + }, + { + "classes": [], + "depth": 5, + "end": 657, + "start": 640, + "tree_index": 354 + }, + { + "classes": [], + "depth": 5, + "end": 751, + "start": 734, + "tree_index": 358 + }, + { + "classes": [], + "depth": 5, + "end": 811, + "start": 782, + "tree_index": 360 + }, + { + "classes": [], + "depth": 5, + "end": 837, + "start": 825, + "tree_index": 362 + }, + { + "classes": [], + "depth": 5, + "end": 845, + "start": 838, + "tree_index": 363 + }, + { + "classes": [], + "depth": 5, + "end": 897, + "start": 893, + "tree_index": 369 + }, + { + "classes": [], + "depth": 5, + "end": 916, + "start": 898, + "tree_index": 370 + }, + { + "classes": [], + "depth": 5, + "end": 1056, + "start": 1054, + "tree_index": 377 + }, + { + "classes": [], + "depth": 5, + "end": 1102, + "start": 1092, + "tree_index": 382 + }, + { + "classes": [], + "depth": 5, + "end": 1236, + "start": 1231, + "tree_index": 385 + }, + { + "classes": [], + "depth": 5, + "end": 1298, + "start": 1283, + "tree_index": 386 + }, + { + "classes": [], + "depth": 6, + "end": 93, + "start": 89, + "tree_index": 405 + }, + { + "classes": [], + "depth": 6, + "end": 133, + "start": 132, + "tree_index": 411 + }, + { + "classes": [], + "depth": 6, + "end": 163, + "start": 148, + "tree_index": 412 + }, + { + "classes": [], + "depth": 6, + "end": 169, + "start": 164, + "tree_index": 413 + }, + { + "classes": [], + "depth": 6, + "end": 188, + "start": 183, + "tree_index": 414 + }, + { + "classes": [], + "depth": 6, + "end": 193, + "start": 189, + "tree_index": 415 + }, + { + "classes": [], + "depth": 6, + "end": 249, + "start": 244, + "tree_index": 416 + }, + { + "classes": [], + "depth": 6, + "end": 266, + "start": 250, + "tree_index": 417 + }, + { + "classes": [], + "depth": 6, + "end": 407, + "start": 406, + "tree_index": 422 + }, + { + "classes": [], + "depth": 6, + "end": 411, + "start": 410, + "tree_index": 424 + }, + { + "classes": [], + "depth": 6, + "end": 431, + "start": 421, + "tree_index": 426 + }, + { + "classes": [], + "depth": 6, + "end": 447, + "start": 442, + "tree_index": 428 + }, + { + "classes": [], + "depth": 6, + "end": 483, + "start": 475, + "tree_index": 432 + }, + { + "classes": [], + "depth": 6, + "end": 515, + "start": 507, + "tree_index": 435 + }, + { + "classes": [], + "depth": 6, + "end": 551, + "start": 543, + "tree_index": 439 + }, + { + "classes": [], + "depth": 6, + "end": 602, + "start": 593, + "tree_index": 441 + }, + { + "classes": [], + "depth": 6, + "end": 644, + "start": 640, + "tree_index": 443 + }, + { + "classes": [], + "depth": 6, + "end": 656, + "start": 645, + "tree_index": 444 + }, + { + "classes": [], + "depth": 6, + "end": 738, + "start": 734, + "tree_index": 447 + }, + { + "classes": [], + "depth": 6, + "end": 750, + "start": 739, + "tree_index": 448 + }, + { + "classes": [], + "depth": 6, + "end": 786, + "start": 782, + "tree_index": 449 + }, + { + "classes": [], + "depth": 6, + "end": 1298, + "start": 1293, + "tree_index": 473 + }, + { + "classes": [], + "depth": 7, + "end": 156, + "start": 148, + "tree_index": 477 + }, + { + "classes": [], + "depth": 7, + "end": 165, + "start": 164, + "tree_index": 479 + }, + { + "classes": [], + "depth": 7, + "end": 169, + "start": 168, + "tree_index": 481 + }, + { + "classes": [], + "depth": 7, + "end": 261, + "start": 250, + "tree_index": 485 + }, + { + "classes": [], + "depth": 7, + "end": 426, + "start": 421, + "tree_index": 491 + }, + { + "classes": [], + "depth": 7, + "end": 480, + "start": 475, + "tree_index": 495 + }, + { + "classes": [], + "depth": 7, + "end": 512, + "start": 507, + "tree_index": 498 + }, + { + "classes": [], + "depth": 7, + "end": 548, + "start": 543, + "tree_index": 501 + }, + { + "classes": [], + "depth": 7, + "end": 650, + "start": 645, + "tree_index": 505 + }, + { + "classes": [], + "depth": 7, + "end": 744, + "start": 739, + "tree_index": 510 + }, + { + "classes": [], + "depth": 7, + "end": 1294, + "start": 1293, + "tree_index": 523 + }, + { + "classes": [], + "depth": 8, + "end": 152, + "start": 148, + "tree_index": 526 + }, + { + "classes": [], + "depth": 8, + "end": 260, + "start": 255, + "tree_index": 533 + }, + { + "classes": [], + "depth": 9, + "end": 256, + "start": 255, + "tree_index": 546 + } + ] + }, + "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n sum (n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", + "lineno": 63, + "name": "main" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "3" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "3", + "int", + {} + ], + "177": [ + "3", + "int", + {} + ], + "179": [ + "2", + "int", + { + "inner_calls": [ + "test_id_3" + ] + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "298": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "299": [ + "2", + "int", + {} + ], + "395": [ + "3", + "int", + {} + ], + "78": [ + "False", + "bool", + {} + ], + "80": [ + "6", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "6", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "2" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "2", + "int", + {} + ], + "177": [ + "2", + "int", + {} + ], + "179": [ + "1", + "int", + { + "inner_calls": [ + "test_id_4" + ] + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "298": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "299": [ + "1", + "int", + {} + ], + "395": [ + "2", + "int", + {} + ], + "78": [ + "False", + "bool", + {} + ], + "80": [ + "2", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "2", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "1" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "1", + "int", + {} + ], + "19": [ + "", + -2, + {} + ], + "78": [ + "True", + "bool", + {} + ], + "79": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "1", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "other", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "114": [ + "", + -2, + {} + ], + "204": [ + "", + "MyClass", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 46, + "start": 34, + "tree_index": 114 + }, + { + "classes": [], + "depth": 4, + "end": 46, + "start": 41, + "tree_index": 204 + } + ] + }, + "html_body": " @eye\n def __add__(self, other):\n return other", + "lineno": 50, + "name": "MyClass.__add__" + }, + "return_value": "", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "117": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 33, + "start": 29, + "tree_index": 117 + } + ] + }, + "html_body": " @eye\n def __enter__(self):\n pass", + "lineno": 54, + "name": "MyClass.__enter__" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "exc_type", + "None" + ], + [ + "exc_val", + "None" + ], + [ + "exc_tb", + "None" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "120": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 59, + "start": 55, + "tree_index": 120 + } + ] + }, + "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", + "lineno": 58, + "name": "MyClass.__exit__" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "other", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "114": [ + "", + -2, + {} + ], + "204": [ + "", + "SlotClass", + {}, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 46, + "start": 34, + "tree_index": 114 + }, + { + "classes": [], + "depth": 4, + "end": 46, + "start": 41, + "tree_index": 204 + } + ] + }, + "html_body": " @eye\n def __add__(self, other):\n return other", + "lineno": 50, + "name": "MyClass.__add__" + }, + "return_value": "", + "traceback": null + }, + { + "arguments": [ + [ + "pos1", + "[0, 1, 2, ..., 997, 998, 999]" + ], + [ + "pos2", + "'hello'" + ], + [ + "key1", + "3" + ], + [ + "key2", + "8" + ], + [ + "args", + "()" + ], + [ + "kwargs", + "{'kwarg1': {'key': 'value'}}" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "186": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "187": [ + "'hello'", + "str", + { + "len": 5 + } + ], + "188": [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ], + "28": [ + "", + -2, + {} + ], + "96": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 94, + "start": 67, + "tree_index": 28 + }, + { + "classes": [], + "depth": 3, + "end": 94, + "start": 74, + "tree_index": 96 + }, + { + "classes": [], + "depth": 4, + "end": 79, + "start": 75, + "tree_index": 186 + }, + { + "classes": [], + "depth": 4, + "end": 85, + "start": 81, + "tree_index": 187 + }, + { + "classes": [], + "depth": 4, + "end": 93, + "start": 87, + "tree_index": 188 + } + ] + }, + "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", + "lineno": 26, + "name": "complex_args" + }, + "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "traceback": null + }, + { + "arguments": [ + [ + "pos1", + "1" + ], + [ + "pos2", + "2" + ], + [ + "key1", + "3" + ], + [ + "key2", + "4" + ], + [ + "args", + "()" + ], + [ + "kwargs", + "{'k': 23}" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "186": [ + "1", + "int", + {} + ], + "187": [ + "2", + "int", + {} + ], + "188": [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ], + "28": [ + "", + -2, + {} + ], + "96": [ + "[1, 2, {'k': 23}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 94, + "start": 67, + "tree_index": 28 + }, + { + "classes": [], + "depth": 3, + "end": 94, + "start": 74, + "tree_index": 96 + }, + { + "classes": [], + "depth": 4, + "end": 79, + "start": 75, + "tree_index": 186 + }, + { + "classes": [], + "depth": 4, + "end": 85, + "start": 81, + "tree_index": 187 + }, + { + "classes": [], + "depth": 4, + "end": 93, + "start": 87, + "tree_index": 188 + } + ] + }, + "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", + "lineno": 26, + "name": "complex_args" + }, + "return_value": "[1, 2, {'k': 23}]", + "traceback": null + }, + { + "arguments": [ + [ + "g", + "" + ] + ], + "data": { + "loop_iterations": { + "34": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "104": [ + "", + "islice", + {} + ], + "105": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "195": [ + "", + "type", + {}, + [ + "__doc__", + [ + "'islice(iterab...s an iterator.'", + "str", + { + "len": 453 + } + ] + ], + [ + "__getattribute__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__iter__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__module__", + [ + "'itertools'", + "str", + { + "len": 9 + } + ] + ], + [ + "__new__", + [ + "", + "builtin_function_or_method", + {} + ] + ], + [ + "__next__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__reduce__", + [ + "", + "method_descriptor", + {} + ] + ], + [ + "__setstate__", + [ + "", + "method_descriptor", + {} + ] + ] + ], + "196": [ + "", + "generator", + {} + ], + "198": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ] + }, + "309": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ] + }, + "310": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "34": [ + "", + -2, + { + "inner_calls": [ + "test_id_12" + ] + } + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 27, + "start": 26, + "tree_index": 34 + } + ], + "node_loops": { + "105": [ + 34 + ], + "198": [ + 34 + ], + "309": [ + 34 + ], + "310": [ + 34 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 61, + "start": 18, + "tree_index": 34 + }, + { + "classes": [], + "depth": 3, + "end": 43, + "start": 31, + "tree_index": 104 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 61, + "start": 53, + "tree_index": 105 + }, + { + "classes": [], + "depth": 4, + "end": 37, + "start": 31, + "tree_index": 195 + }, + { + "classes": [], + "depth": 4, + "end": 39, + "start": 38, + "tree_index": 196 + }, + { + "classes": [], + "depth": 4, + "end": 61, + "start": 53, + "tree_index": 198 + }, + { + "classes": [], + "depth": 5, + "end": 58, + "start": 53, + "tree_index": 309 + }, + { + "classes": [], + "depth": 5, + "end": 60, + "start": 59, + "tree_index": 310 + } + ] + }, + "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", + "lineno": 37, + "name": "use_gen_1" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [], + "data": { + "loop_iterations": { + "31": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + }, + { + "index": 4, + "loops": {} + }, + { + "index": 5, + "loops": {} + } + ] + }, + "node_values": { + "100": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "193": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "306": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ], + "4": [ + "4", + "int", + {} + ], + "5": [ + "5", + "int", + {} + ] + }, + "31": [ + "", + -2, + {} + ], + "99": [ + "range(0, 6)", + "range", + { + "len": 6 + } + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 20, + "start": 19, + "tree_index": 31 + } + ], + "node_loops": { + "100": [ + 31 + ], + "193": [ + 31 + ], + "306": [ + 31 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 49, + "start": 11, + "tree_index": 31 + }, + { + "classes": [], + "depth": 3, + "end": 32, + "start": 24, + "tree_index": 99 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 42, + "tree_index": 100 + }, + { + "classes": [], + "depth": 4, + "end": 29, + "start": 24, + "tree_index": 191 + }, + { + "classes": [], + "depth": 4, + "end": 49, + "start": 42, + "tree_index": 193 + }, + { + "classes": [], + "depth": 5, + "end": 49, + "start": 48, + "tree_index": 306 + } + ] + }, + "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", + "lineno": 31, + "name": "gen" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "g", + "" + ] + ], + "data": { + "loop_iterations": { + "37": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "109": [ + "", + "generator", + {} + ], + "110": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "201": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ] + }, + "311": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ] + }, + "312": { + "0": [ + "3", + "int", + {} + ], + "1": [ + "4", + "int", + {} + ], + "2": [ + "5", + "int", + {} + ] + }, + "37": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 27, + "start": 26, + "tree_index": 37 + } + ], + "node_loops": { + "110": [ + 37 + ], + "201": [ + 37 + ], + "311": [ + 37 + ], + "312": [ + 37 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 50, + "start": 18, + "tree_index": 37 + }, + { + "classes": [], + "depth": 3, + "end": 32, + "start": 31, + "tree_index": 109 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 50, + "start": 42, + "tree_index": 110 + }, + { + "classes": [], + "depth": 4, + "end": 50, + "start": 42, + "tree_index": 201 + }, + { + "classes": [], + "depth": 5, + "end": 47, + "start": 42, + "tree_index": 311 + }, + { + "classes": [], + "depth": 5, + "end": 49, + "start": 48, + "tree_index": 312 + } + ] + }, + "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", + "lineno": 43, + "name": "use_gen_2" + }, + "return_value": "None", + "traceback": null + } +] \ No newline at end of file diff --git a/tests/golden-files/3.13/traced.json b/tests/golden-files/3.13/traced.json new file mode 100644 index 0000000..21ac81e --- /dev/null +++ b/tests/golden-files/3.13/traced.json @@ -0,0 +1,1821 @@ +[ + { + "arguments": [], + "data": { + "loop_iterations": {}, + "node_values": { + "1": [ + "", + -2, + {} + ], + "13": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_15" + ] + } + ], + "2": [ + "", + -2, + {} + ], + "27": [ + "", + "function", + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "node_loops": { + "103": [ + 104 + ], + "105": [ + 82 + ], + "117": [ + 100, + 118 + ], + "118": [ + 100 + ], + "121": [ + 104 + ], + "123": [ + 104 + ], + "127": [ + 82 + ], + "136": [ + 100, + 118 + ], + "140": [ + 100 + ], + "150": [ + 82 + ], + "152": [ + 82 + ], + "157": [ + 100 + ], + "158": [ + 100 + ], + "34": [ + 19 + ], + "53": [ + 19 + ], + "72": [ + 19 + ], + "73": [ + 19 + ], + "81": [ + 82 + ], + "95": [ + 19 + ], + "97": [ + 19 + ], + "99": [ + 100 + ] + } + }, + "html_body": "import birdseye.trace_module_deep\n\n\ndef deco(f):\n return f\n\n\ndef m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()\n\n\nm()", + "lineno": 1, + "name": "$$__FILE__$$" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [], + "data": { + "loop_iterations": { + "100": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": { + "118": [ + { + "index": 0, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "118": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + } + ] + } + } + ], + "19": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ], + "82": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "10": [ + "", + -2, + {} + ], + "100": [ + "", + -2, + {} + ], + "105": { + "0": [ + ".A. at 0xABC>", + "function", + {} + ], + "1": [ + ".A. at 0xABC>", + "function", + {} + ], + "2": [ + ".A. at 0xABC>", + "function", + {} + ] + }, + "108": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "11": [ + "", + -2, + {} + ], + "113": [ + ".A object at 0xABC>", + "m..A", + {} + ], + "117": { + "1": { + "0": [ + "0", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ] + } + }, + "118": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "12": [ + "", + -2, + {} + ], + "120": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "135": [ + ".A'>", + "type", + {}, + [ + "B", + [ + ".A.B'>", + "type", + {}, + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__firstlineno__", + [ + "16", + "int", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.traced'", + "str", + { + "len": 19 + } + ] + ], + [ + "__static_attributes__", + [ + "()", + "tuple", + { + "len": 0 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__firstlineno__", + [ + "12", + "int", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.traced'", + "str", + { + "len": 19 + } + ] + ], + [ + "__static_attributes__", + [ + "()", + "tuple", + { + "len": 0 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "bar", + [ + ".A.bar at 0xABC>", + "function", + {} + ] + ], + [ + "foo", + [ + ".A.foo at 0xABC>", + "function", + {} + ] + ], + [ + "i", + [ + "2", + "int", + {} + ] + ] + ], + "136": { + "1": { + "0": [ + "0", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + } + }, + "140": { + "0": [ + "range(0, 0)", + "range", + { + "len": 0 + } + ], + "1": [ + "range(0, 1)", + "range", + { + "len": 1 + } + ], + "2": [ + "range(0, 2)", + "range", + { + "len": 2 + } + ] + }, + "158": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "18": [ + "'9'", + "str", + { + "len": 1 + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "21": [ + "", + -2, + {} + ], + "22": [ + "", + -2, + {} + ], + "23": [ + "", + -2, + {} + ], + "24": [ + "", + -2, + { + "inner_calls": [ + "test_id_16" + ] + } + ], + "25": [ + "", + -2, + {} + ], + "26": [ + "4", + "int", + { + "inner_calls": [ + "test_id_17" + ] + } + ], + "31": [ + "9", + "int", + {} + ], + "33": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "34": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "35": [ + "", + -2, + {} + ], + "36": [ + "9", + "int", + {} + ], + "37": [ + "[0, 8, 16]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "8", + "int", + {} + ] + ], + [ + "2", + [ + "16", + "int", + {} + ] + ] + ], + "38": [ + "'{8, 9, 7}'", + "str", + { + "len": 9 + } + ], + "43": [ + "", + "function", + {} + ], + "46": [ + ".A.bar of .A object at 0xABC>>", + "method", + {} + ], + "53": { + "0": [ + "'0'", + "str", + { + "len": 1 + } + ], + "1": [ + "'1'", + "str", + { + "len": 1 + } + ], + "2": [ + "'4'", + "str", + { + "len": 1 + } + ] + }, + "54": [ + "'[[], [0], [0, 2]]'", + "str", + { + "len": 17 + } + ], + "55": [ + ".A. at 0xABC>", + "function", + {} + ], + "57": [ + ".A. at 0xABC>", + "function", + {} + ], + "60": [ + "{8, 9, 7}", + "set", + { + "len": 3 + }, + [ + "<0>", + [ + "8", + "int", + {} + ] + ], + [ + "<1>", + [ + "9", + "int", + {} + ] + ], + [ + "<2>", + [ + "7", + "int", + {} + ] + ] + ], + "69": [ + ".A object at 0xABC>", + "m..A", + {} + ], + "73": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ] + }, + "75": [ + "[[], [0], [0, 2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[0]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[0, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ] + ], + "81": { + "0": [ + "7", + "int", + {} + ], + "1": [ + "8", + "int", + {} + ], + "2": [ + "9", + "int", + {} + ] + }, + "82": [ + "", + -2, + {} + ], + "9": [ + "", + -2, + {} + ], + "93": [ + ".A.foo of .A object at 0xABC>>", + "method", + {} + ], + "95": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "97": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "99": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[0]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ], + "2": [ + "[0, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + } + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 61, + "start": 60, + "tree_index": 19 + }, + { + "end": 314, + "start": 313, + "tree_index": 82 + }, + { + "end": 181, + "start": 180, + "tree_index": 100 + }, + { + "end": 257, + "start": 256, + "tree_index": 104 + }, + { + "end": 145, + "start": 144, + "tree_index": 118 + } + ], + "node_loops": { + "103": [ + 104 + ], + "105": [ + 82 + ], + "117": [ + 100, + 118 + ], + "118": [ + 100 + ], + "121": [ + 104 + ], + "123": [ + 104 + ], + "127": [ + 82 + ], + "136": [ + 100, + 118 + ], + "140": [ + 100 + ], + "150": [ + 82 + ], + "152": [ + 82 + ], + "157": [ + 100 + ], + "158": [ + 100 + ], + "34": [ + 19 + ], + "53": [ + 19 + ], + "72": [ + 19 + ], + "73": [ + 19 + ], + "81": [ + 82 + ], + "95": [ + 19 + ], + "97": [ + 19 + ], + "99": [ + 100 + ] + }, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 1, + "end": 509, + "start": 0, + "tree_index": 3 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 20, + "start": 13, + "tree_index": 9 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 33, + "start": 25, + "tree_index": 10 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 488, + "start": 35, + "tree_index": 11 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 509, + "start": 494, + "tree_index": 12 + }, + { + "classes": [], + "depth": 3, + "end": 33, + "start": 25, + "tree_index": 18 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 3, + "end": 97, + "start": 48, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 195, + "start": 99, + "tree_index": 20 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 225, + "start": 205, + "tree_index": 21 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 274, + "start": 234, + "tree_index": 22 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 328, + "start": 283, + "tree_index": 23 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 439, + "start": 330, + "tree_index": 24 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 488, + "start": 441, + "tree_index": 25 + }, + { + "classes": [], + "depth": 3, + "end": 509, + "start": 494, + "tree_index": 26 + }, + { + "classes": [], + "depth": 4, + "end": 28, + "start": 25, + "tree_index": 30 + }, + { + "classes": [], + "depth": 4, + "end": 32, + "start": 29, + "tree_index": 31 + }, + { + "classes": [], + "depth": 4, + "end": 73, + "start": 65, + "tree_index": 33 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 97, + "start": 87, + "tree_index": 34 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 195, + "start": 128, + "tree_index": 35 + }, + { + "classes": [], + "depth": 4, + "end": 225, + "start": 205, + "tree_index": 36 + }, + { + "classes": [], + "depth": 4, + "end": 274, + "start": 234, + "tree_index": 37 + }, + { + "classes": [], + "depth": 4, + "end": 328, + "start": 283, + "tree_index": 38 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 388, + "start": 379, + "tree_index": 40 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 415, + "start": 401, + "tree_index": 41 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 439, + "start": 428, + "tree_index": 42 + }, + { + "classes": [], + "depth": 4, + "end": 343, + "start": 339, + "tree_index": 43 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 488, + "start": 476, + "tree_index": 45 + }, + { + "classes": [], + "depth": 4, + "end": 507, + "start": 494, + "tree_index": 46 + }, + { + "classes": [], + "depth": 5, + "end": 70, + "start": 65, + "tree_index": 51 + }, + { + "classes": [], + "depth": 5, + "end": 97, + "start": 87, + "tree_index": 53 + }, + { + "classes": [], + "depth": 5, + "end": 195, + "start": 128, + "tree_index": 54 + }, + { + "classes": [], + "depth": 5, + "end": 218, + "start": 206, + "tree_index": 55 + }, + { + "classes": [], + "depth": 5, + "end": 270, + "start": 235, + "tree_index": 57 + }, + { + "classes": [], + "depth": 5, + "end": 286, + "start": 283, + "tree_index": 59 + }, + { + "classes": [], + "depth": 5, + "end": 327, + "start": 287, + "tree_index": 60 + }, + { + "classes": [], + "depth": 5, + "end": 388, + "start": 383, + "tree_index": 63 + }, + { + "classes": [], + "depth": 5, + "end": 415, + "start": 401, + "tree_index": 64 + }, + { + "classes": [], + "depth": 5, + "end": 439, + "start": 435, + "tree_index": 65 + }, + { + "classes": [], + "depth": 5, + "end": 488, + "start": 483, + "tree_index": 68 + }, + { + "classes": [], + "depth": 5, + "end": 503, + "start": 494, + "tree_index": 69 + }, + { + "classes": [], + "depth": 6, + "end": 90, + "start": 87, + "tree_index": 72 + }, + { + "classes": [], + "depth": 6, + "end": 96, + "start": 91, + "tree_index": 73 + }, + { + "classes": [], + "depth": 6, + "end": 131, + "start": 128, + "tree_index": 74 + }, + { + "classes": [], + "depth": 6, + "end": 194, + "start": 132, + "tree_index": 75 + }, + { + "classes": [], + "depth": 6, + "end": 270, + "start": 245, + "tree_index": 79 + }, + { + "classes": [], + "depth": 6, + "end": 308, + "start": 288, + "tree_index": 81 + }, + { + "classes": [ + "loop" + ], + "depth": 6, + "end": 326, + "start": 309, + "tree_index": 82 + }, + { + "classes": [], + "depth": 6, + "end": 404, + "start": 401, + "tree_index": 87 + }, + { + "classes": [], + "depth": 6, + "end": 414, + "start": 405, + "tree_index": 88 + }, + { + "classes": [], + "depth": 6, + "end": 501, + "start": 494, + "tree_index": 93 + }, + { + "classes": [], + "depth": 7, + "end": 92, + "start": 91, + "tree_index": 95 + }, + { + "classes": [], + "depth": 7, + "end": 96, + "start": 95, + "tree_index": 97 + }, + { + "classes": [], + "depth": 7, + "end": 158, + "start": 133, + "tree_index": 99 + }, + { + "classes": [ + "loop" + ], + "depth": 7, + "end": 193, + "start": 176, + "tree_index": 100 + }, + { + "classes": [], + "depth": 7, + "end": 251, + "start": 246, + "tree_index": 103 + }, + { + "classes": [ + "loop" + ], + "depth": 7, + "end": 269, + "start": 252, + "tree_index": 104 + }, + { + "classes": [], + "depth": 7, + "end": 304, + "start": 289, + "tree_index": 105 + }, + { + "classes": [], + "depth": 7, + "end": 326, + "start": 318, + "tree_index": 108 + }, + { + "classes": [], + "depth": 7, + "end": 410, + "start": 405, + "tree_index": 110 + }, + { + "classes": [], + "depth": 7, + "end": 414, + "start": 413, + "tree_index": 112 + }, + { + "classes": [], + "depth": 7, + "end": 497, + "start": 494, + "tree_index": 113 + }, + { + "classes": [], + "depth": 8, + "end": 139, + "start": 134, + "tree_index": 117 + }, + { + "classes": [ + "loop" + ], + "depth": 8, + "end": 157, + "start": 140, + "tree_index": 118 + }, + { + "classes": [], + "depth": 8, + "end": 193, + "start": 185, + "tree_index": 120 + }, + { + "classes": [], + "depth": 8, + "end": 247, + "start": 246, + "tree_index": 121 + }, + { + "classes": [], + "depth": 8, + "end": 251, + "start": 250, + "tree_index": 123 + }, + { + "classes": [], + "depth": 8, + "end": 269, + "start": 261, + "tree_index": 125 + }, + { + "classes": [], + "depth": 8, + "end": 304, + "start": 299, + "tree_index": 127 + }, + { + "classes": [], + "depth": 8, + "end": 323, + "start": 318, + "tree_index": 129 + }, + { + "classes": [], + "depth": 8, + "end": 495, + "start": 494, + "tree_index": 135 + }, + { + "classes": [], + "depth": 9, + "end": 135, + "start": 134, + "tree_index": 136 + }, + { + "classes": [], + "depth": 9, + "end": 157, + "start": 149, + "tree_index": 140 + }, + { + "classes": [], + "depth": 9, + "end": 190, + "start": 185, + "tree_index": 142 + }, + { + "classes": [], + "depth": 9, + "end": 266, + "start": 261, + "tree_index": 147 + }, + { + "classes": [], + "depth": 9, + "end": 300, + "start": 299, + "tree_index": 150 + }, + { + "classes": [], + "depth": 9, + "end": 304, + "start": 303, + "tree_index": 152 + }, + { + "classes": [], + "depth": 10, + "end": 154, + "start": 149, + "tree_index": 157 + }, + { + "classes": [], + "depth": 10, + "end": 156, + "start": 155, + "tree_index": 158 + } + ] + }, + "html_body": "def m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()", + "lineno": 8, + "name": "m" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "f", + ".A.foo at 0xABC>" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "15": [ + ".A.foo at 0xABC>", + "function", + {} + ], + "7": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 1, + "end": 25, + "start": 0, + "tree_index": 2 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 25, + "start": 17, + "tree_index": 7 + }, + { + "classes": [], + "depth": 3, + "end": 25, + "start": 24, + "tree_index": 15 + } + ] + }, + "html_body": "def deco(f):\n return f", + "lineno": 4, + "name": "deco" + }, + "return_value": ".A.foo at 0xABC>", + "traceback": null + }, + { + "arguments": [ + [ + "self", + ".A object at 0xABC>" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "45": [ + "", + -2, + {} + ], + "68": [ + "4", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 39, + "start": 27, + "tree_index": 45 + }, + { + "classes": [], + "depth": 5, + "end": 39, + "start": 34, + "tree_index": 68 + } + ] + }, + "html_body": " def bar(self):\n return 1 + 3", + "lineno": 30, + "name": "bar" + }, + "return_value": "4", + "traceback": null + } +] \ No newline at end of file From 40a6c8356e2406a7ff78276016aba6a584c3bca0 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 20:52:13 +0200 Subject: [PATCH 03/15] sqlalchemy warning --- birdseye/db.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/birdseye/db.py b/birdseye/db.py index a563cf8..ae0c48e 100644 --- a/birdseye/db.py +++ b/birdseye/db.py @@ -3,6 +3,7 @@ import os import sys from contextlib import contextmanager +from typing import List from humanize import naturaltime from littleutils import select_attrs, retry @@ -11,16 +12,11 @@ Index from sqlalchemy.dialects.mysql import LONGTEXT from sqlalchemy.exc import OperationalError, InterfaceError, InternalError, ProgrammingError, ArgumentError -from sqlalchemy.ext.declarative import declarative_base, declared_attr +from sqlalchemy.ext.declarative import declared_attr from sqlalchemy.orm import backref, relationship, sessionmaker from birdseye.utils import IPYTHON_FILE_PATH, is_ipython_cell -# noinspection PyUnreachableCode -if False: - from typing import List - - try: from sqlalchemy.dialects.mysql.base import RESERVED_WORDS except ImportError: @@ -28,6 +24,11 @@ else: RESERVED_WORDS.add('function') +try: + from sqlalchemy.orm import declarative_base +except ImportError: + from sqlalchemy.ext.declarative import declarative_base + DB_VERSION = 1 From ccad27aa713f8048cad2a361306f7a31eb588365 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 21:00:22 +0200 Subject: [PATCH 04/15] other warnings --- birdseye/bird.py | 13 ++++++------- birdseye/tracer.py | 2 +- birdseye/utils.py | 9 ++++++--- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/birdseye/bird.py b/birdseye/bird.py index a66d306..435c860 100644 --- a/birdseye/bird.py +++ b/birdseye/bird.py @@ -1,4 +1,5 @@ import ast +import builtins import hashlib import inspect import json @@ -1154,20 +1155,18 @@ def is_interesting_expression(node): return True. Put differently, return False if this is just a literal. """ return (isinstance(node, ast.expr) and - not (isinstance(node, (ast.Num, ast.Str, getattr(ast, 'NameConstant', ()))) or + not (isinstance(node, ast.Constant) or isinstance(getattr(node, 'ctx', None), (ast.Store, ast.Del)) or (isinstance(node, ast.UnaryOp) and isinstance(node.op, (ast.UAdd, ast.USub)) and - isinstance(node.operand, ast.Num)) or + isinstance(node.operand, ast.Constant) and + isinstance(node.operand.value, (int, float, complex))) or (isinstance(node, (ast.List, ast.Tuple, ast.Dict)) and not any(is_interesting_expression(n) for n in ast.iter_child_nodes(node))))) -# noinspection PyUnresolvedReferences -builtins_dict = __builtins__ -if not isinstance(builtins_dict, dict): - builtins_dict = builtins_dict.__dict__ +builtins_dict: dict = builtins.__dict__ # type: ignore def is_obvious_builtin(node, value): @@ -1179,4 +1178,4 @@ def is_obvious_builtin(node, value): return ((isinstance(node, ast.Name) and node.id in builtins_dict and builtins_dict[node.id] is value) or - isinstance(node, getattr(ast, 'NameConstant', ()))) + isinstance(node, ast.Constant) and node.value is value) diff --git a/birdseye/tracer.py b/birdseye/tracer.py index a862135..2e45090 100644 --- a/birdseye/tracer.py +++ b/birdseye/tracer.py @@ -559,7 +559,7 @@ def _create_simple_marker_call(self, node, func): """ return ast.Call( func=ast.Name(id=self.traced_file.trace_methods[func], ctx=ast.Load()), - args=[ast.Num(node._tree_index)], + args=[ast.Constant(node._tree_index)], keywords=[], ) diff --git a/birdseye/utils.py b/birdseye/utils.py index 65f64c6..97b39df 100644 --- a/birdseye/utils.py +++ b/birdseye/utils.py @@ -248,6 +248,9 @@ def format_pandas_index(index): Supports different versions of pandas """ try: - return index.format(sparsify=False) - except TypeError: - return index.format() + return index.astype(str) + except Exception: + try: + return index.format(sparsify=False) + except TypeError: + return index.format() From 9279299ab0690d732262119c0801e1c1f362bac4 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 21:36:10 +0200 Subject: [PATCH 05/15] test 3.8 to 3.13 --- birdseye/bird.py | 5 + misc/test.sh | 9 +- setup.cfg | 10 +- tests/golden-files/2.7/gold.json | 14963 --------------------------- tests/golden-files/2.7/traced.json | 1 - tests/golden-files/3.5/gold.json | 13880 ------------------------- tests/golden-files/3.5/traced.json | 1968 ---- tests/golden-files/3.6/gold.json | 13880 ------------------------- tests/golden-files/3.6/traced.json | 1968 ---- tests/golden-files/3.7/gold.json | 13880 ------------------------- tests/golden-files/3.7/traced.json | 1968 ---- tests/test_utils.py | 3 +- tox.ini | 3 +- 13 files changed, 18 insertions(+), 62520 deletions(-) delete mode 100644 tests/golden-files/2.7/gold.json delete mode 100644 tests/golden-files/2.7/traced.json delete mode 100644 tests/golden-files/3.5/gold.json delete mode 100644 tests/golden-files/3.5/traced.json delete mode 100644 tests/golden-files/3.6/gold.json delete mode 100644 tests/golden-files/3.6/traced.json delete mode 100644 tests/golden-files/3.7/gold.json delete mode 100644 tests/golden-files/3.7/traced.json diff --git a/birdseye/bird.py b/birdseye/bird.py index 435c860..c1b2a2b 100644 --- a/birdseye/bird.py +++ b/birdseye/bird.py @@ -1131,6 +1131,11 @@ def _sample_indices(length, max_length): length)) +@try_register_repr('numpy', 'int64') +def _repr_numpy_int(x, _helper): + return repr(int(x)) + + @try_register_repr('pandas', 'Series') def _repr_series_one_line(x, helper): n = len(x) diff --git a/misc/test.sh b/misc/test.sh index d7ab5b5..dc79d1f 100755 --- a/misc/test.sh +++ b/misc/test.sh @@ -2,6 +2,10 @@ set -eux +which python +python --version +python -m gunicorn --version + export DB=${DB:-sqlite} if [ ${DB} = sqlite ]; then @@ -21,11 +25,12 @@ else fi export BIRDSEYE_SERVER_RUNNING=true -gunicorn -b 127.0.0.1:7777 birdseye.server:app & + +python -m gunicorn -b 127.0.0.1:7777 birdseye.server:app & set +e -pytest -vv +python -m pytest -vv result=$? kill $(ps aux | grep birdseye.server:app | grep -v grep | awk '{print $2}') exit ${result} diff --git a/setup.cfg b/setup.cfg index 0b62a8c..e73ca93 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,13 +37,6 @@ install_requires = setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3 include_package_data = True -tests_require = - bs4 - selenium - requests - pytest - numpy>=1.16.5 - pandas test_suite = tests @@ -55,6 +48,9 @@ tests = pytest numpy>=1.16.5 pandas + gunicorn + twine + build [options.entry_points] console_scripts = diff --git a/tests/golden-files/2.7/gold.json b/tests/golden-files/2.7/gold.json deleted file mode 100644 index f06f0ef..0000000 --- a/tests/golden-files/2.7/gold.json +++ /dev/null @@ -1,14963 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": { - "241": [ - { - "index": 0, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 1, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - } - ], - "348": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "351": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "355": [ - { - "index": 0, - "loops": {} - } - ], - "46": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 191, - "loops": {} - }, - { - "index": 192, - "loops": {} - }, - { - "index": 193, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 193, - "loops": {} - }, - { - "index": 194, - "loops": {} - }, - { - "index": 195, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 195, - "loops": {} - }, - { - "index": 196, - "loops": {} - }, - { - "index": 197, - "loops": {} - } - ] - } - } - ], - "47": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "66": [ - { - "index": 0, - "loops": {} - } - ] - }, - "node_values": { - "119": [ - "True", - "bool", - {} - ], - "123": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "124": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "125": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "127": [ - "[0, 1, 2, 3, 4, 5]", - "list", - { - "len": 6 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "5", - [ - "5", - "int", - {} - ] - ] - ], - "128": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "129": { - "1": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "131": [ - "", - "MyClass", - { - "inner_calls": [ - "test_id_5" - ] - } - ], - "133": [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "3", - [ - "[3, 4, 5, ..., 100, 101, 102]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "3", - "int", - {} - ] - ], - [ - "1", - [ - "4", - "int", - {} - ] - ], - [ - "2", - [ - "5", - "int", - {} - ] - ], - [ - "97", - [ - "100", - "int", - {} - ] - ], - [ - "98", - [ - "101", - "int", - {} - ] - ], - [ - "99", - [ - "102", - "int", - {} - ] - ] - ] - ], - [ - "4", - [ - "[4, 5, 6, ..., 101, 102, 103]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "4", - "int", - {} - ] - ], - [ - "1", - [ - "5", - "int", - {} - ] - ], - [ - "2", - [ - "6", - "int", - {} - ] - ], - [ - "97", - [ - "101", - "int", - {} - ] - ], - [ - "98", - [ - "102", - "int", - {} - ] - ], - [ - "99", - [ - "103", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 192, 193, 194]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "97", - [ - "192", - "int", - {} - ] - ], - [ - "98", - [ - "193", - "int", - {} - ] - ], - [ - "99", - [ - "194", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 193, 194, 195]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "97", - [ - "193", - "int", - {} - ] - ], - [ - "98", - [ - "194", - "int", - {} - ] - ], - [ - "99", - [ - "195", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ], - "134": [ - "6", - "int", - {} - ], - "135": [ - "None", - "NoneType", - {} - ], - "136": [ - "None", - "NoneType", - {} - ], - "137": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "138": [ - "", - -2, - {} - ], - "139": [ - "None", - "NoneType", - {} - ], - "140": [ - "True", - "bool", - {} - ], - "141": [ - "True", - "bool", - {} - ], - "142": [ - "True", - "bool", - {} - ], - "148": [ - "True", - "bool", - {} - ], - "150": [ - "None", - "NoneType", - {} - ], - "151": [ - "True", - "bool", - {} - ], - "152": [ - "True", - "bool", - {} - ], - "153": [ - "", - -2, - {} - ], - "154": [ - "", - -2, - {} - ], - "156": { - "0": [ - "", - -2, - {} - ] - }, - "157": [ - "True", - "bool", - {} - ], - "160": [ - "True", - "bool", - {} - ], - "162": [ - "", - "generator", - {} - ], - "163": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_11" - ] - } - ], - "164": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_13" - ] - } - ], - "214": [ - "6", - "int", - { - "inner_calls": [ - "test_id_2" - ] - } - ], - "222": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "224": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[0, 1]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ] - ], - "2": [ - "[0, 1, 2, 3]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ] - ], - "3": [ - "[0, 1, 2, ..., 191, 192, 193]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "191", - [ - "191", - "int", - {} - ] - ], - [ - "192", - [ - "192", - "int", - {} - ] - ], - [ - "193", - [ - "193", - "int", - {} - ] - ] - ], - "4": [ - "[0, 1, 2, ..., 193, 194, 195]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "193", - [ - "193", - "int", - {} - ] - ], - [ - "194", - [ - "194", - "int", - {} - ] - ], - [ - "195", - [ - "195", - "int", - {} - ] - ] - ], - "5": [ - "[0, 1, 2, ..., 195, 196, 197]", - "list", - { - "len": 198 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "195", - [ - "195", - "int", - {} - ] - ], - [ - "196", - [ - "196", - "int", - {} - ] - ], - [ - "197", - [ - "197", - "int", - {} - ] - ] - ] - }, - "225": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "226": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "230": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "232": { - "1": [ - "False", - "bool", - {} - ], - "3": [ - "True", - "bool", - {} - ] - }, - "233": { - "3": [ - "", - -2, - {} - ] - }, - "235": [ - "", - "MyClass", - {} - ], - "237": [ - "", - "MyClass", - {} - ], - "238": [ - "", - "MyClass", - {} - ], - "240": { - "0": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "1": [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - }, - "241": [ - "", - -2, - {} - ], - "243": [ - " at 0xABC>", - "generator", - {} - ], - "244": [ - "", - "function", - {} - ], - "245": [ - "set([0, 1, 2, 3])", - "set", - { - "len": 4 - }, - [ - "<0>", - [ - "0", - "int", - {} - ] - ], - [ - "<1>", - [ - "1", - "int", - {} - ] - ], - [ - "<2>", - [ - "2", - "int", - {} - ] - ], - [ - "<3>", - [ - "3", - "int", - {} - ] - ] - ], - "246": [ - "", - "function", - {} - ], - "247": [ - "{0: 0}", - "dict", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "249": [ - "", - "function", - {} - ], - "250": [ - "", - "SlotClass", - { - "inner_calls": [ - "test_id_8" - ] - }, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "251": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "inner_calls": [ - "test_id_9" - ], - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "253": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "254": [ - "[1, 2, {'k': 23}]", - "list", - { - "inner_calls": [ - "test_id_10" - ], - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ], - "257": [ - "3", - "int", - {} - ], - "262": [ - "6", - "int", - {} - ], - "266": [ - "", - "function", - {} - ], - "270": [ - "2", - "int", - {} - ], - "273": [ - "(1, 2)", - "tuple", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ], - "276": [ - "ValueError", - -1, - {} - ], - "280": [ - "None", - "NoneType", - {} - ], - "282": [ - "8", - "int", - {} - ], - "286": [ - "4", - "int", - {} - ], - "290": [ - "", - "function", - {} - ], - "291": [ - "", - "function", - {} - ], - "292": [ - "", - "generator", - {} - ], - "293": [ - "", - "function", - {} - ], - "294": [ - "", - "generator", - {} - ], - "322": [ - "", - "function", - {} - ], - "325": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "329": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - }, - "330": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "331": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "333": { - "1": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "335": { - "0": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "336": { - "1": [ - "1", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "339": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {} - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {} - ] - ], - [ - "__exit__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "340": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {} - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {} - ] - ], - [ - "__exit__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "342": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "3", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "100", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "100", - "int", - {} - ], - "5": [ - "101", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "195", - "int", - {} - ], - "5": [ - "196", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "196", - "int", - {} - ], - "4": [ - "197", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - } - }, - "343": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "345": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "347": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "348": [ - "", - -2, - {} - ], - "350": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "351": [ - "", - -2, - {} - ], - "353": { - "0": [ - "0", - "int", - {} - ] - }, - "354": { - "0": [ - "0", - "int", - {} - ] - }, - "355": [ - "", - -2, - {} - ], - "357": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "359": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "360": [ - "", - "function", - {} - ], - "361": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "365": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "367": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "369": [ - "", - "function", - {} - ], - "377": [ - "'1 + 2'", - "str", - { - "len": 5 - } - ], - "392": [ - "ValueError()", - "ValueError", - {} - ], - "398": [ - "", - -2, - {} - ], - "399": [ - "", - "function", - {} - ], - "400": [ - " at 0xABC>", - "function", - {} - ], - "419": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[[]]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "2": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", - "list", - { - "len": 97 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "94", - [ - "[94, 95, 96, ..., 279, 280, 281]", - "list", - { - "len": 188 - }, - [ - "0", - [ - "94", - "int", - {} - ] - ], - [ - "1", - [ - "95", - "int", - {} - ] - ], - [ - "2", - [ - "96", - "int", - {} - ] - ], - [ - "185", - [ - "279", - "int", - {} - ] - ], - [ - "186", - [ - "280", - "int", - {} - ] - ], - [ - "187", - [ - "281", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ], - [ - "195", - [ - "293", - "int", - {} - ] - ] - ] - ] - ] - }, - "425": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "426": { - "1": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ] - }, - "2": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ] - }, - "3": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "4": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "5": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - } - }, - "427": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "5", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "288", - "int", - {} - ], - "4": [ - "289", - "int", - {} - ], - "5": [ - "290", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "291", - "int", - {} - ], - "4": [ - "292", - "int", - {} - ], - "5": [ - "293", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "294", - "int", - {} - ], - "4": [ - "295", - "int", - {} - ], - "5": [ - "296", - "int", - {} - ] - } - }, - "428": { - "1": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ] - }, - "2": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "3": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "4": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "5": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - } - }, - "429": { - "1": { - "0": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 294, 295, 296]", - "list", - { - "len": 198 - } - ] - ] - ] - } - }, - "430": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "431": { - "1": [ - "11", - "int", - {} - ], - "3": [ - "11", - "int", - {} - ] - }, - "436": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "438": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "0", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "0", - "int", - {} - ], - "4": [ - "0", - "int", - {} - ], - "5": [ - "0", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "1", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ], - "4": [ - "1", - "int", - {} - ], - "5": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ], - "4": [ - "2", - "int", - {} - ], - "5": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "44": [ - "", - -2, - {} - ], - "440": { - "0": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "1": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "2": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "3": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "4": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "5": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - }, - "446": [ - "[0, 1, 2, 3]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ] - ], - "449": [ - "[0, 1, 2, 3]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ] - ], - "45": [ - "", - -2, - {} - ], - "453": [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "455": [ - "", - "type", - {}, - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__init__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__slots__", - [ - "('slot1',)", - "tuple", - { - "len": 1 - }, - [ - "0", - [ - "'slot1'", - "str", - { - "len": 5 - } - ] - ] - ] - ], - [ - "slot1", - [ - "", - "member_descriptor", - {} - ] - ] - ], - "458": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "46": [ - "", - -2, - {} - ], - "462": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "47": [ - "", - -2, - {} - ], - "48": [ - "", - -2, - {} - ], - "49": [ - "", - -2, - {} - ], - "497": { - "1": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[1]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ] - ] - }, - "2": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[2]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ] - ], - "3": [ - "[2, 3, 4]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ] - ] - }, - "3": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[97]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ] - ], - "2": [ - "[97, 98]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "188", - [ - "285", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ] - ], - "4": [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ] - ], - "5": [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ] - ] - }, - "4": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[98]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ] - ], - "2": [ - "[98, 99]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ] - ], - "3": [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "190", - [ - "288", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ] - ], - "5": [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ] - ] - }, - "5": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[99]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ] - ], - "2": [ - "[99, 100]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ] - ], - "3": [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "192", - [ - "291", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ] - ], - "4": [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ], - [ - "196", - [ - "295", - "int", - {} - ] - ] - ] - } - }, - "499": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "50": [ - "", - -2, - {} - ], - "501": { - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "191", - "int", - {} - ], - "4": [ - "192", - "int", - {} - ], - "5": [ - "193", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "193", - "int", - {} - ], - "4": [ - "194", - "int", - {} - ], - "5": [ - "195", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - } - }, - "505": { - "0": [ - "ZeroDivisionError: integer division or modulo by zero", - -1, - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "ZeroDivisionError: integer division or modulo by zero", - -1, - {} - ], - "3": [ - "1", - "int", - {} - ] - }, - "51": [ - "", - -2, - {} - ], - "52": [ - "", - -2, - {} - ], - "53": [ - "", - -2, - { - "inner_calls": [ - "test_id_6", - "test_id_7" - ] - } - ], - "54": [ - "", - -2, - {} - ], - "542": { - "1": { - "0": [ - "[[], []]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], []]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ] - } - }, - "549": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ] - }, - "55": [ - "", - -2, - {} - ], - "56": [ - "", - -2, - {} - ], - "562": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "57": [ - "", - -2, - {} - ], - "58": [ - "", - -2, - {} - ], - "59": [ - "", - -2, - {} - ], - "60": [ - "", - -2, - {} - ], - "61": [ - "", - -2, - {} - ], - "62": [ - "", - -2, - {} - ], - "63": [ - "", - -2, - {} - ], - "64": [ - "", - -2, - {} - ], - "65": [ - "", - -2, - {} - ], - "66": [ - "", - -2, - {} - ], - "67": [ - "", - -2, - {} - ], - "68": [ - "", - -2, - {} - ], - "69": [ - "", - -2, - {} - ], - "70": [ - "", - -2, - {} - ], - "71": [ - "", - -2, - {} - ], - "72": [ - "", - -2, - {} - ], - "73": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 65, - "start": 64, - "tree_index": 46 - }, - { - "end": 205, - "start": 204, - "tree_index": 47 - }, - { - "end": 1254, - "start": 1250, - "tree_index": 66 - }, - { - "end": 118, - "start": 117, - "tree_index": 125 - }, - { - "end": 438, - "start": 437, - "tree_index": 241 - }, - { - "end": 417, - "start": 416, - "tree_index": 343 - }, - { - "end": 471, - "start": 470, - "tree_index": 348 - }, - { - "end": 503, - "start": 502, - "tree_index": 351 - }, - { - "end": 539, - "start": 538, - "tree_index": 355 - } - ], - "node_loops": { - "124": [ - 46 - ], - "125": [ - 46 - ], - "128": [ - 47 - ], - "129": [ - 47 - ], - "155": [ - 66 - ], - "156": [ - 66 - ], - "222": [ - 46 - ], - "224": [ - 46 - ], - "225": [ - 46, - 125 - ], - "226": [ - 46, - 125 - ], - "230": [ - 47 - ], - "232": [ - 47 - ], - "233": [ - 47 - ], - "240": [ - 241 - ], - "325": [ - 46 - ], - "328": [ - 46 - ], - "329": [ - 46 - ], - "330": [ - 46, - 125 - ], - "331": [ - 46, - 125 - ], - "333": [ - 47 - ], - "334": [ - 47 - ], - "335": [ - 47 - ], - "336": [ - 47 - ], - "342": [ - 241, - 343 - ], - "343": [ - 241 - ], - "347": [ - 348 - ], - "350": [ - 351 - ], - "353": [ - 355 - ], - "354": [ - 355 - ], - "419": [ - 46 - ], - "425": [ - 46 - ], - "426": [ - 46, - 125 - ], - "427": [ - 46, - 125 - ], - "428": [ - 46, - 125 - ], - "429": [ - 46, - 125 - ], - "430": [ - 47 - ], - "431": [ - 47 - ], - "436": [ - 241, - 343 - ], - "438": [ - 241, - 343 - ], - "440": [ - 241 - ], - "497": [ - 46, - 125 - ], - "499": [ - 46, - 125 - ], - "501": [ - 46, - 125 - ], - "505": [ - 47 - ], - "511": [ - 241 - ], - "542": [ - 46, - 125 - ], - "549": [ - 47 - ], - "562": [ - 47 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 40, - "start": 16, - "tree_index": 44 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 55, - "start": 46, - "tree_index": 45 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 194, - "start": 56, - "tree_index": 46 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 359, - "start": 196, - "tree_index": 47 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 390, - "start": 365, - "tree_index": 48 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 453, - "start": 395, - "tree_index": 49 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 484, - "start": 458, - "tree_index": 50 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 517, - "start": 489, - "tree_index": 51 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 553, - "start": 522, - "tree_index": 52 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 578, - "start": 554, - "tree_index": 53 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 605, - "start": 583, - "tree_index": 54 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 812, - "start": 611, - "tree_index": 55 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 880, - "start": 818, - "tree_index": 56 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 922, - "start": 886, - "tree_index": 57 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 933, - "start": 928, - "tree_index": 58 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 944, - "start": 938, - "tree_index": 59 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 962, - "start": 949, - "tree_index": 60 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 972, - "start": 967, - "tree_index": 61 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1002, - "start": 978, - "tree_index": 62 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1032, - "start": 1008, - "tree_index": 63 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1067, - "start": 1037, - "tree_index": 64 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1238, - "start": 1069, - "tree_index": 65 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 1269, - "start": 1240, - "tree_index": 66 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1307, - "start": 1275, - "tree_index": 67 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1321, - "start": 1313, - "tree_index": 68 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1331, - "start": 1326, - "tree_index": 69 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1349, - "start": 1336, - "tree_index": 70 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1364, - "start": 1355, - "tree_index": 71 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1381, - "start": 1369, - "tree_index": 72 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1398, - "start": 1386, - "tree_index": 73 - }, - { - "classes": [], - "depth": 3, - "end": 40, - "start": 23, - "tree_index": 119 - }, - { - "classes": [], - "depth": 3, - "end": 79, - "start": 69, - "tree_index": 123 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 104, - "start": 89, - "tree_index": 124 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 194, - "start": 105, - "tree_index": 125 - }, - { - "classes": [], - "depth": 3, - "end": 217, - "start": 209, - "tree_index": 127 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 322, - "start": 219, - "tree_index": 128 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 359, - "start": 323, - "tree_index": 129 - }, - { - "classes": [], - "depth": 3, - "end": 390, - "start": 369, - "tree_index": 131 - }, - { - "classes": [], - "depth": 3, - "end": 453, - "start": 404, - "tree_index": 133 - }, - { - "classes": [], - "depth": 3, - "end": 484, - "start": 458, - "tree_index": 134 - }, - { - "classes": [], - "depth": 3, - "end": 517, - "start": 489, - "tree_index": 135 - }, - { - "classes": [], - "depth": 3, - "end": 553, - "start": 522, - "tree_index": 136 - }, - { - "classes": [], - "depth": 3, - "end": 564, - "start": 563, - "tree_index": 137 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 578, - "start": 574, - "tree_index": 138 - }, - { - "classes": [], - "depth": 3, - "end": 605, - "start": 583, - "tree_index": 139 - }, - { - "classes": [], - "depth": 3, - "end": 812, - "start": 618, - "tree_index": 140 - }, - { - "classes": [], - "depth": 3, - "end": 880, - "start": 825, - "tree_index": 141 - }, - { - "classes": [], - "depth": 3, - "end": 922, - "start": 893, - "tree_index": 142 - }, - { - "classes": [], - "depth": 3, - "end": 962, - "start": 956, - "tree_index": 148 - }, - { - "classes": [], - "depth": 3, - "end": 1002, - "start": 978, - "tree_index": 150 - }, - { - "classes": [], - "depth": 3, - "end": 1032, - "start": 1015, - "tree_index": 151 - }, - { - "classes": [], - "depth": 3, - "end": 1067, - "start": 1044, - "tree_index": 152 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1209, - "start": 1069, - "tree_index": 153 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1238, - "start": 1231, - "tree_index": 154 - }, - { - "classes": [], - "depth": 3, - "end": 1254, - "start": 1250, - "tree_index": 155 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1269, - "start": 1264, - "tree_index": 156 - }, - { - "classes": [], - "depth": 3, - "end": 1307, - "start": 1282, - "tree_index": 157 - }, - { - "classes": [], - "depth": 3, - "end": 1349, - "start": 1343, - "tree_index": 160 - }, - { - "classes": [], - "depth": 3, - "end": 1364, - "start": 1359, - "tree_index": 162 - }, - { - "classes": [], - "depth": 3, - "end": 1381, - "start": 1369, - "tree_index": 163 - }, - { - "classes": [], - "depth": 3, - "end": 1398, - "start": 1386, - "tree_index": 164 - }, - { - "classes": [], - "depth": 4, - "end": 35, - "start": 23, - "tree_index": 214 - }, - { - "classes": [], - "depth": 4, - "end": 74, - "start": 69, - "tree_index": 220 - }, - { - "classes": [], - "depth": 4, - "end": 104, - "start": 89, - "tree_index": 222 - }, - { - "classes": [], - "depth": 4, - "end": 134, - "start": 122, - "tree_index": 224 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 170, - "start": 148, - "tree_index": 225 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 194, - "start": 183, - "tree_index": 226 - }, - { - "classes": [], - "depth": 4, - "end": 214, - "start": 209, - "tree_index": 228 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 267, - "start": 244, - "tree_index": 230 - }, - { - "classes": [], - "depth": 4, - "end": 340, - "start": 334, - "tree_index": 232 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 359, - "start": 354, - "tree_index": 233 - }, - { - "classes": [], - "depth": 4, - "end": 378, - "start": 369, - "tree_index": 235 - }, - { - "classes": [], - "depth": 4, - "end": 390, - "start": 381, - "tree_index": 237 - }, - { - "classes": [], - "depth": 4, - "end": 396, - "start": 395, - "tree_index": 238 - }, - { - "classes": [], - "depth": 4, - "end": 432, - "start": 405, - "tree_index": 240 - }, - { - "classes": [ - "loop" - ], - "depth": 4, - "end": 452, - "start": 433, - "tree_index": 241 - }, - { - "classes": [], - "depth": 4, - "end": 461, - "start": 458, - "tree_index": 242 - }, - { - "classes": [], - "depth": 4, - "end": 483, - "start": 464, - "tree_index": 243 - }, - { - "classes": [], - "depth": 4, - "end": 494, - "start": 489, - "tree_index": 244 - }, - { - "classes": [], - "depth": 4, - "end": 516, - "start": 495, - "tree_index": 245 - }, - { - "classes": [], - "depth": 4, - "end": 527, - "start": 522, - "tree_index": 246 - }, - { - "classes": [], - "depth": 4, - "end": 552, - "start": 528, - "tree_index": 247 - }, - { - "classes": [], - "depth": 4, - "end": 588, - "start": 583, - "tree_index": 249 - }, - { - "classes": [], - "depth": 4, - "end": 604, - "start": 589, - "tree_index": 250 - }, - { - "classes": [], - "depth": 4, - "end": 729, - "start": 618, - "tree_index": 251 - }, - { - "classes": [], - "depth": 4, - "end": 812, - "start": 733, - "tree_index": 253 - }, - { - "classes": [], - "depth": 4, - "end": 859, - "start": 825, - "tree_index": 254 - }, - { - "classes": [], - "depth": 4, - "end": 917, - "start": 893, - "tree_index": 257 - }, - { - "classes": [], - "depth": 4, - "end": 957, - "start": 956, - "tree_index": 262 - }, - { - "classes": [], - "depth": 4, - "end": 983, - "start": 978, - "tree_index": 266 - }, - { - "classes": [], - "depth": 4, - "end": 988, - "start": 984, - "tree_index": 267 - }, - { - "classes": [], - "depth": 4, - "end": 995, - "start": 990, - "tree_index": 268 - }, - { - "classes": [], - "depth": 4, - "end": 1001, - "start": 997, - "tree_index": 269 - }, - { - "classes": [], - "depth": 4, - "end": 1027, - "start": 1015, - "tree_index": 270 - }, - { - "classes": [], - "depth": 4, - "end": 1057, - "start": 1044, - "tree_index": 273 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1104, - "start": 1086, - "tree_index": 276 - }, - { - "classes": [], - "depth": 4, - "end": 1238, - "start": 1231, - "tree_index": 280 - }, - { - "classes": [], - "depth": 4, - "end": 1302, - "start": 1282, - "tree_index": 282 - }, - { - "classes": [], - "depth": 4, - "end": 1344, - "start": 1343, - "tree_index": 286 - }, - { - "classes": [], - "depth": 4, - "end": 1362, - "start": 1359, - "tree_index": 290 - }, - { - "classes": [], - "depth": 4, - "end": 1378, - "start": 1369, - "tree_index": 291 - }, - { - "classes": [], - "depth": 4, - "end": 1380, - "start": 1379, - "tree_index": 292 - }, - { - "classes": [], - "depth": 4, - "end": 1395, - "start": 1386, - "tree_index": 293 - }, - { - "classes": [], - "depth": 4, - "end": 1397, - "start": 1396, - "tree_index": 294 - }, - { - "classes": [], - "depth": 5, - "end": 32, - "start": 23, - "tree_index": 322 - }, - { - "classes": [], - "depth": 5, - "end": 100, - "start": 89, - "tree_index": 325 - }, - { - "classes": [], - "depth": 5, - "end": 127, - "start": 122, - "tree_index": 328 - }, - { - "classes": [], - "depth": 5, - "end": 133, - "start": 128, - "tree_index": 329 - }, - { - "classes": [], - "depth": 5, - "end": 170, - "start": 148, - "tree_index": 330 - }, - { - "classes": [], - "depth": 5, - "end": 194, - "start": 183, - "tree_index": 331 - }, - { - "classes": [], - "depth": 5, - "end": 267, - "start": 244, - "tree_index": 333 - }, - { - "classes": [], - "depth": 5, - "end": 300, - "start": 283, - "tree_index": 334 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 322, - "start": 314, - "tree_index": 335 - }, - { - "classes": [], - "depth": 5, - "end": 335, - "start": 334, - "tree_index": 336 - }, - { - "classes": [], - "depth": 5, - "end": 376, - "start": 369, - "tree_index": 339 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 381, - "tree_index": 340 - }, - { - "classes": [], - "depth": 5, - "end": 411, - "start": 406, - "tree_index": 342 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 431, - "start": 412, - "tree_index": 343 - }, - { - "classes": [], - "depth": 5, - "end": 452, - "start": 442, - "tree_index": 345 - }, - { - "classes": [], - "depth": 5, - "end": 465, - "start": 464, - "tree_index": 347 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 483, - "start": 466, - "tree_index": 348 - }, - { - "classes": [], - "depth": 5, - "end": 497, - "start": 496, - "tree_index": 350 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 515, - "start": 498, - "tree_index": 351 - }, - { - "classes": [], - "depth": 5, - "end": 530, - "start": 529, - "tree_index": 353 - }, - { - "classes": [], - "depth": 5, - "end": 533, - "start": 532, - "tree_index": 354 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 551, - "start": 534, - "tree_index": 355 - }, - { - "classes": [], - "depth": 5, - "end": 590, - "start": 589, - "tree_index": 357 - }, - { - "classes": [], - "depth": 5, - "end": 604, - "start": 593, - "tree_index": 359 - }, - { - "classes": [], - "depth": 5, - "end": 630, - "start": 618, - "tree_index": 360 - }, - { - "classes": [], - "depth": 5, - "end": 657, - "start": 640, - "tree_index": 361 - }, - { - "classes": [], - "depth": 5, - "end": 751, - "start": 734, - "tree_index": 365 - }, - { - "classes": [], - "depth": 5, - "end": 811, - "start": 782, - "tree_index": 367 - }, - { - "classes": [], - "depth": 5, - "end": 837, - "start": 825, - "tree_index": 369 - }, - { - "classes": [], - "depth": 5, - "end": 897, - "start": 893, - "tree_index": 376 - }, - { - "classes": [], - "depth": 5, - "end": 916, - "start": 898, - "tree_index": 377 - }, - { - "classes": [], - "depth": 5, - "end": 1104, - "start": 1092, - "tree_index": 392 - }, - { - "classes": [], - "depth": 5, - "end": 1130, - "start": 1116, - "tree_index": 393 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 1149, - "start": 1145, - "tree_index": 395 - }, - { - "classes": [], - "depth": 5, - "end": 1170, - "start": 1161, - "tree_index": 396 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 1184, - "start": 1180, - "tree_index": 397 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 1209, - "start": 1205, - "tree_index": 398 - }, - { - "classes": [], - "depth": 5, - "end": 1236, - "start": 1231, - "tree_index": 399 - }, - { - "classes": [], - "depth": 5, - "end": 1298, - "start": 1283, - "tree_index": 400 - }, - { - "classes": [], - "depth": 6, - "end": 93, - "start": 89, - "tree_index": 419 - }, - { - "classes": [], - "depth": 6, - "end": 133, - "start": 132, - "tree_index": 425 - }, - { - "classes": [], - "depth": 6, - "end": 163, - "start": 148, - "tree_index": 426 - }, - { - "classes": [], - "depth": 6, - "end": 169, - "start": 164, - "tree_index": 427 - }, - { - "classes": [], - "depth": 6, - "end": 188, - "start": 183, - "tree_index": 428 - }, - { - "classes": [], - "depth": 6, - "end": 193, - "start": 189, - "tree_index": 429 - }, - { - "classes": [], - "depth": 6, - "end": 249, - "start": 244, - "tree_index": 430 - }, - { - "classes": [], - "depth": 6, - "end": 266, - "start": 250, - "tree_index": 431 - }, - { - "classes": [], - "depth": 6, - "end": 407, - "start": 406, - "tree_index": 436 - }, - { - "classes": [], - "depth": 6, - "end": 411, - "start": 410, - "tree_index": 438 - }, - { - "classes": [], - "depth": 6, - "end": 431, - "start": 421, - "tree_index": 440 - }, - { - "classes": [], - "depth": 6, - "end": 447, - "start": 442, - "tree_index": 442 - }, - { - "classes": [], - "depth": 6, - "end": 483, - "start": 475, - "tree_index": 446 - }, - { - "classes": [], - "depth": 6, - "end": 515, - "start": 507, - "tree_index": 449 - }, - { - "classes": [], - "depth": 6, - "end": 551, - "start": 543, - "tree_index": 453 - }, - { - "classes": [], - "depth": 6, - "end": 602, - "start": 593, - "tree_index": 455 - }, - { - "classes": [], - "depth": 6, - "end": 644, - "start": 640, - "tree_index": 457 - }, - { - "classes": [], - "depth": 6, - "end": 656, - "start": 645, - "tree_index": 458 - }, - { - "classes": [], - "depth": 6, - "end": 738, - "start": 734, - "tree_index": 461 - }, - { - "classes": [], - "depth": 6, - "end": 750, - "start": 739, - "tree_index": 462 - }, - { - "classes": [], - "depth": 6, - "end": 786, - "start": 782, - "tree_index": 463 - }, - { - "classes": [], - "depth": 6, - "end": 1102, - "start": 1092, - "tree_index": 487 - }, - { - "classes": [], - "depth": 6, - "end": 1298, - "start": 1293, - "tree_index": 493 - }, - { - "classes": [], - "depth": 7, - "end": 156, - "start": 148, - "tree_index": 497 - }, - { - "classes": [], - "depth": 7, - "end": 165, - "start": 164, - "tree_index": 499 - }, - { - "classes": [], - "depth": 7, - "end": 169, - "start": 168, - "tree_index": 501 - }, - { - "classes": [], - "depth": 7, - "end": 261, - "start": 250, - "tree_index": 505 - }, - { - "classes": [], - "depth": 7, - "end": 426, - "start": 421, - "tree_index": 511 - }, - { - "classes": [], - "depth": 7, - "end": 480, - "start": 475, - "tree_index": 515 - }, - { - "classes": [], - "depth": 7, - "end": 512, - "start": 507, - "tree_index": 518 - }, - { - "classes": [], - "depth": 7, - "end": 548, - "start": 543, - "tree_index": 521 - }, - { - "classes": [], - "depth": 7, - "end": 650, - "start": 645, - "tree_index": 525 - }, - { - "classes": [], - "depth": 7, - "end": 744, - "start": 739, - "tree_index": 530 - }, - { - "classes": [], - "depth": 7, - "end": 1291, - "start": 1290, - "tree_index": 538 - }, - { - "classes": [], - "depth": 7, - "end": 1294, - "start": 1293, - "tree_index": 539 - }, - { - "classes": [], - "depth": 8, - "end": 152, - "start": 148, - "tree_index": 542 - }, - { - "classes": [], - "depth": 8, - "end": 260, - "start": 255, - "tree_index": 549 - }, - { - "classes": [], - "depth": 9, - "end": 256, - "start": 255, - "tree_index": 562 - } - ] - }, - "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n sum (n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", - "lineno": 63, - "name": "main" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "3" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "168": [ - "3", - "int", - {} - ], - "172": [ - "3", - "int", - {} - ], - "174": [ - "2", - "int", - { - "inner_calls": [ - "test_id_3" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {} - ], - "299": [ - "2", - "int", - {} - ], - "409": [ - "3", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "6", - "int", - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "long", - "set", - "str", - "tuple", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 77 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 168 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 172 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 174 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 409 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "6", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "2" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "168": [ - "2", - "int", - {} - ], - "172": [ - "2", - "int", - {} - ], - "174": [ - "1", - "int", - { - "inner_calls": [ - "test_id_4" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {} - ], - "299": [ - "1", - "int", - {} - ], - "409": [ - "2", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "2", - "int", - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "long", - "set", - "str", - "tuple", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 77 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 168 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 172 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 174 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 409 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "2", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "1" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "168": [ - "1", - "int", - {} - ], - "19": [ - "", - -2, - {} - ], - "78": [ - "True", - "bool", - {} - ], - "79": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "long", - "set", - "str", - "tuple", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 77 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 168 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 172 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 174 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 409 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "1", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "111": [ - "", - -2, - {} - ], - "205": [ - "", - "MyClass", - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "getset_descriptor", - "int", - "list", - "long", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 111 - }, - { - "classes": [], - "depth": 4, - "end": 16, - "start": 12, - "tree_index": 203 - }, - { - "classes": [], - "depth": 4, - "end": 23, - "start": 18, - "tree_index": 204 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 205 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "long", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 18, - "start": 14, - "tree_index": 207 - } - ] - }, - "html_body": " @eye\n def __enter__(self):\n pass", - "lineno": 54, - "name": "MyClass.__enter__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "exc_type", - "None" - ], - [ - "exc_val", - "None" - ], - [ - "exc_tb", - "None" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "117": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "long", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 59, - "start": 55, - "tree_index": 117 - }, - { - "classes": [], - "depth": 4, - "end": 17, - "start": 13, - "tree_index": 209 - }, - { - "classes": [], - "depth": 4, - "end": 27, - "start": 19, - "tree_index": 210 - }, - { - "classes": [], - "depth": 4, - "end": 36, - "start": 29, - "tree_index": 211 - }, - { - "classes": [], - "depth": 4, - "end": 44, - "start": 38, - "tree_index": 212 - } - ] - }, - "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", - "lineno": 58, - "name": "MyClass.__exit__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "111": [ - "", - -2, - {} - ], - "205": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 111 - }, - { - "classes": [], - "depth": 4, - "end": 16, - "start": 12, - "tree_index": 203 - }, - { - "classes": [], - "depth": 4, - "end": 23, - "start": 18, - "tree_index": 204 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 205 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "[0, 1, 2, ..., 997, 998, 999]" - ], - [ - "pos2", - "'hello'" - ], - [ - "key1", - "3" - ], - [ - "key2", - "8" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'kwarg1': {'key': 'value'}}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "185": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "186": [ - "'hello'", - "str", - { - "len": 5 - } - ], - "187": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "93": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 21, - "start": 17, - "tree_index": 87 - }, - { - "classes": [], - "depth": 3, - "end": 27, - "start": 23, - "tree_index": 88 - }, - { - "classes": [], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 89 - }, - { - "classes": [], - "depth": 3, - "end": 41, - "start": 37, - "tree_index": 90 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 93 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 185 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 187 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "1" - ], - [ - "pos2", - "2" - ], - [ - "key1", - "3" - ], - [ - "key2", - "4" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'k': 23}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "185": [ - "1", - "int", - {} - ], - "186": [ - "2", - "int", - {} - ], - "187": [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "93": [ - "[1, 2, {'k': 23}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 21, - "start": 17, - "tree_index": 87 - }, - { - "classes": [], - "depth": 3, - "end": 27, - "start": 23, - "tree_index": 88 - }, - { - "classes": [], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 89 - }, - { - "classes": [], - "depth": 3, - "end": 41, - "start": 37, - "tree_index": 90 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 93 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 185 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 187 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[1, 2, {'k': 23}]", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "34": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "101": [ - "", - "islice", - {} - ], - "102": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "195": [ - "", - "type", - {}, - [ - "__doc__", - [ - "'islice(iterab...s an iterator.'", - "str", - { - "len": 416 - } - ] - ], - [ - "__getattribute__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__iter__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__new__", - [ - "", - "builtin_function_or_method", - {} - ] - ], - [ - "next", - [ - "", - "wrapper_descriptor", - {} - ] - ] - ], - "196": [ - "", - "generator", - {} - ], - "198": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "310": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "311": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "34": [ - "", - -2, - { - "inner_calls": [ - "test_id_12" - ] - } - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 34 - } - ], - "node_loops": { - "102": [ - 34 - ], - "198": [ - 34 - ], - "310": [ - 34 - ], - "311": [ - 34 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 61, - "start": 18, - "tree_index": 34 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 99 - }, - { - "classes": [], - "depth": 3, - "end": 43, - "start": 31, - "tree_index": 101 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 61, - "start": 53, - "tree_index": 102 - }, - { - "classes": [], - "depth": 4, - "end": 37, - "start": 31, - "tree_index": 195 - }, - { - "classes": [], - "depth": 4, - "end": 39, - "start": 38, - "tree_index": 196 - }, - { - "classes": [], - "depth": 4, - "end": 61, - "start": 53, - "tree_index": 198 - }, - { - "classes": [], - "depth": 5, - "end": 58, - "start": 53, - "tree_index": 310 - }, - { - "classes": [], - "depth": 5, - "end": 60, - "start": 59, - "tree_index": 311 - } - ] - }, - "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", - "lineno": 37, - "name": "use_gen_1" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "31": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - }, - { - "index": 4, - "loops": {} - }, - { - "index": 5, - "loops": {} - } - ] - }, - "node_values": { - "192": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "307": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ], - "4": [ - "4", - "int", - {} - ], - "5": [ - "5", - "int", - {} - ] - }, - "31": [ - "", - -2, - {} - ], - "96": [ - "[0, 1, 2, 3, 4, 5]", - "list", - { - "len": 6 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "5", - [ - "5", - "int", - {} - ] - ] - ], - "97": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 20, - "start": 19, - "tree_index": 31 - } - ], - "node_loops": { - "192": [ - 31 - ], - "307": [ - 31 - ], - "97": [ - 31 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 49, - "start": 11, - "tree_index": 31 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 24, - "tree_index": 96 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 42, - "tree_index": 97 - }, - { - "classes": [], - "depth": 4, - "end": 29, - "start": 24, - "tree_index": 190 - }, - { - "classes": [], - "depth": 4, - "end": 49, - "start": 42, - "tree_index": 192 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 307 - } - ] - }, - "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", - "lineno": 31, - "name": "gen" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "37": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "106": [ - "", - "generator", - {} - ], - "107": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "202": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "312": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "313": { - "0": [ - "3", - "int", - {} - ], - "1": [ - "4", - "int", - {} - ], - "2": [ - "5", - "int", - {} - ] - }, - "37": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 37 - } - ], - "node_loops": { - "107": [ - 37 - ], - "202": [ - 37 - ], - "312": [ - 37 - ], - "313": [ - 37 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 50, - "start": 18, - "tree_index": 37 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 104 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 31, - "tree_index": 106 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 50, - "start": 42, - "tree_index": 107 - }, - { - "classes": [], - "depth": 4, - "end": 50, - "start": 42, - "tree_index": 202 - }, - { - "classes": [], - "depth": 5, - "end": 47, - "start": 42, - "tree_index": 312 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 313 - } - ] - }, - "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", - "lineno": 43, - "name": "use_gen_2" - }, - "return_value": "None", - "traceback": null - } -] \ No newline at end of file diff --git a/tests/golden-files/2.7/traced.json b/tests/golden-files/2.7/traced.json deleted file mode 100644 index 0637a08..0000000 --- a/tests/golden-files/2.7/traced.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/tests/golden-files/3.5/gold.json b/tests/golden-files/3.5/gold.json deleted file mode 100644 index ae66b8d..0000000 --- a/tests/golden-files/3.5/gold.json +++ /dev/null @@ -1,13880 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": { - "240": [ - { - "index": 0, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 1, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - } - ], - "340": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "347": [ - { - "index": 0, - "loops": {} - } - ], - "46": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 191, - "loops": {} - }, - { - "index": 192, - "loops": {} - }, - { - "index": 193, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 193, - "loops": {} - }, - { - "index": 194, - "loops": {} - }, - { - "index": 195, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 195, - "loops": {} - }, - { - "index": 196, - "loops": {} - }, - { - "index": 197, - "loops": {} - } - ] - } - } - ], - "47": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "66": [ - { - "index": 0, - "loops": {} - } - ] - }, - "node_values": { - "122": [ - "True", - "bool", - {} - ], - "126": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "127": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "128": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "130": [ - "range(0, 6)", - "range", - { - "len": 6 - } - ], - "131": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "132": { - "1": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "134": [ - "", - "MyClass", - { - "inner_calls": [ - "test_id_5" - ] - } - ], - "136": [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "3", - [ - "[3, 4, 5, ..., 100, 101, 102]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "3", - "int", - {} - ] - ], - [ - "1", - [ - "4", - "int", - {} - ] - ], - [ - "2", - [ - "5", - "int", - {} - ] - ], - [ - "97", - [ - "100", - "int", - {} - ] - ], - [ - "98", - [ - "101", - "int", - {} - ] - ], - [ - "99", - [ - "102", - "int", - {} - ] - ] - ] - ], - [ - "4", - [ - "[4, 5, 6, ..., 101, 102, 103]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "4", - "int", - {} - ] - ], - [ - "1", - [ - "5", - "int", - {} - ] - ], - [ - "2", - [ - "6", - "int", - {} - ] - ], - [ - "97", - [ - "101", - "int", - {} - ] - ], - [ - "98", - [ - "102", - "int", - {} - ] - ], - [ - "99", - [ - "103", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 192, 193, 194]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "97", - [ - "192", - "int", - {} - ] - ], - [ - "98", - [ - "193", - "int", - {} - ] - ], - [ - "99", - [ - "194", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 193, 194, 195]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "97", - [ - "193", - "int", - {} - ] - ], - [ - "98", - [ - "194", - "int", - {} - ] - ], - [ - "99", - [ - "195", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ], - "137": [ - "6", - "int", - {} - ], - "138": [ - "None", - "NoneType", - {} - ], - "139": [ - "None", - "NoneType", - {} - ], - "141": [ - "", - -2, - {} - ], - "142": [ - "None", - "NoneType", - {} - ], - "143": [ - "True", - "bool", - {} - ], - "144": [ - "True", - "bool", - {} - ], - "145": [ - "True", - "bool", - {} - ], - "151": [ - "True", - "bool", - {} - ], - "153": [ - "None", - "NoneType", - {} - ], - "154": [ - "True", - "bool", - {} - ], - "155": [ - "True", - "bool", - {} - ], - "156": [ - "ValueError", - -1, - {} - ], - "160": [ - "", - -2, - {} - ], - "162": { - "0": [ - "", - -2, - {} - ] - }, - "163": [ - "True", - "bool", - {} - ], - "166": [ - "True", - "bool", - {} - ], - "168": [ - "", - "generator", - {} - ], - "169": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_11" - ] - } - ], - "170": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_13" - ] - } - ], - "213": [ - "6", - "int", - { - "inner_calls": [ - "test_id_2" - ] - } - ], - "221": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "223": { - "0": [ - "range(0, 0)", - "range", - { - "len": 0 - } - ], - "1": [ - "range(0, 2)", - "range", - { - "len": 2 - } - ], - "2": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "3": [ - "range(0, 194)", - "range", - { - "len": 194 - } - ], - "4": [ - "range(0, 196)", - "range", - { - "len": 196 - } - ], - "5": [ - "range(0, 198)", - "range", - { - "len": 198 - } - ] - }, - "224": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "225": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "229": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "231": { - "1": [ - "False", - "bool", - {} - ], - "3": [ - "True", - "bool", - {} - ] - }, - "232": { - "3": [ - "", - -2, - {} - ] - }, - "234": [ - "", - "MyClass", - {} - ], - "236": [ - "", - "MyClass", - {} - ], - "237": [ - "", - "MyClass", - {} - ], - "239": { - "0": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "1": [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - }, - "240": [ - "", - -2, - {} - ], - "242": [ - ". at 0xABC>", - "generator", - {} - ], - "243": [ - "", - "function", - {} - ], - "244": [ - "{0, 1, 2, 3}", - "set", - { - "len": 4 - }, - [ - "<0>", - [ - "0", - "int", - {} - ] - ], - [ - "<1>", - [ - "1", - "int", - {} - ] - ], - [ - "<2>", - [ - "2", - "int", - {} - ] - ], - [ - "<3>", - [ - "3", - "int", - {} - ] - ] - ], - "245": [ - "", - "function", - {} - ], - "246": [ - "{0: 0}", - "dict", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "247": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "248": [ - "", - "function", - {} - ], - "249": [ - "", - "SlotClass", - { - "inner_calls": [ - "test_id_8" - ] - }, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "250": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "inner_calls": [ - "test_id_9" - ], - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "252": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "253": [ - "[1, 2, {'k': 23}]", - "list", - { - "inner_calls": [ - "test_id_10" - ], - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ], - "256": [ - "3", - "int", - {} - ], - "261": [ - "6", - "int", - {} - ], - "265": [ - "", - "function", - {} - ], - "269": [ - "2", - "int", - {} - ], - "272": [ - "(1, 2)", - "tuple", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ], - "275": [ - "ValueError()", - "ValueError", - {} - ], - "280": [ - "", - -2, - {} - ], - "281": [ - "None", - "NoneType", - {} - ], - "282": [ - "8", - "int", - {} - ], - "286": [ - "4", - "int", - {} - ], - "290": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "291": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "292": [ - "", - "generator", - {} - ], - "293": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "294": [ - "", - "generator", - {} - ], - "314": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "317": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "321": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - }, - "322": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "323": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "325": { - "1": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "327": { - "0": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "328": { - "1": [ - "1", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "331": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__exit__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "332": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__exit__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "334": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "3", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "100", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "100", - "int", - {} - ], - "5": [ - "101", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "195", - "int", - {} - ], - "5": [ - "196", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "196", - "int", - {} - ], - "4": [ - "197", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - } - }, - "335": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "337": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "339": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "340": [ - "", - -2, - {} - ], - "342": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "343": [ - "", - -2, - {} - ], - "345": { - "0": [ - "0", - "int", - {} - ] - }, - "346": { - "0": [ - "0", - "int", - {} - ] - }, - "347": [ - "", - -2, - {} - ], - "350": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "352": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "353": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "354": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "358": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "360": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "362": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "370": [ - "'1 + 2'", - "str", - { - "len": 5 - } - ], - "385": [ - "", - "function", - {} - ], - "386": [ - ". at 0xABC>", - "function", - {} - ], - "405": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[[]]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "2": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", - "list", - { - "len": 97 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "94", - [ - "[94, 95, 96, ..., 279, 280, 281]", - "list", - { - "len": 188 - }, - [ - "0", - [ - "94", - "int", - {} - ] - ], - [ - "1", - [ - "95", - "int", - {} - ] - ], - [ - "2", - [ - "96", - "int", - {} - ] - ], - [ - "185", - [ - "279", - "int", - {} - ] - ], - [ - "186", - [ - "280", - "int", - {} - ] - ], - [ - "187", - [ - "281", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ], - [ - "195", - [ - "293", - "int", - {} - ] - ] - ] - ] - ] - }, - "411": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "412": { - "1": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ] - }, - "2": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ] - }, - "3": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "4": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "5": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - } - }, - "413": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "5", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "288", - "int", - {} - ], - "4": [ - "289", - "int", - {} - ], - "5": [ - "290", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "291", - "int", - {} - ], - "4": [ - "292", - "int", - {} - ], - "5": [ - "293", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "294", - "int", - {} - ], - "4": [ - "295", - "int", - {} - ], - "5": [ - "296", - "int", - {} - ] - } - }, - "414": { - "1": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ] - }, - "2": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "3": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "4": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "5": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - } - }, - "415": { - "1": { - "0": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 294, 295, 296]", - "list", - { - "len": 198 - } - ] - ] - ] - } - }, - "416": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "417": { - "1": [ - "11.0", - "float", - {} - ], - "3": [ - "11.0", - "float", - {} - ] - }, - "422": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "424": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "0", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "0", - "int", - {} - ], - "4": [ - "0", - "int", - {} - ], - "5": [ - "0", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "1", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ], - "4": [ - "1", - "int", - {} - ], - "5": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ], - "4": [ - "2", - "int", - {} - ], - "5": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "426": { - "0": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "1": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "2": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "3": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "4": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "5": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ] - }, - "432": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "435": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "439": [ - "range(0, 1)", - "range", - { - "len": 1 - } - ], - "44": [ - "", - -2, - {} - ], - "441": [ - "", - "type", - {}, - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__init__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__slots__", - [ - "('slot1',)", - "tuple", - { - "len": 1 - }, - [ - "0", - [ - "'slot1'", - "str", - { - "len": 5 - } - ] - ] - ] - ], - [ - "slot1", - [ - "", - "member_descriptor", - {} - ] - ] - ], - "444": [ - "range(0, 1000)", - "range", - { - "len": 1000 - } - ], - "448": [ - "range(0, 1000)", - "range", - { - "len": 1000 - } - ], - "45": [ - "", - -2, - {} - ], - "46": [ - "", - -2, - {} - ], - "47": [ - "", - -2, - {} - ], - "478": { - "1": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[1]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ] - ] - }, - "2": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[2]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ] - ], - "3": [ - "[2, 3, 4]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ] - ] - }, - "3": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[97]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ] - ], - "2": [ - "[97, 98]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "188", - [ - "285", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ] - ], - "4": [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ] - ], - "5": [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ] - ] - }, - "4": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[98]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ] - ], - "2": [ - "[98, 99]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ] - ], - "3": [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "190", - [ - "288", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ] - ], - "5": [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ] - ] - }, - "5": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[99]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ] - ], - "2": [ - "[99, 100]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ] - ], - "3": [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "192", - [ - "291", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ] - ], - "4": [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ], - [ - "196", - [ - "295", - "int", - {} - ] - ] - ] - } - }, - "48": [ - "", - -2, - {} - ], - "480": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "482": { - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "191", - "int", - {} - ], - "4": [ - "192", - "int", - {} - ], - "5": [ - "193", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "193", - "int", - {} - ], - "4": [ - "194", - "int", - {} - ], - "5": [ - "195", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - } - }, - "486": { - "0": [ - "ZeroDivisionError: division by zero", - -1, - {} - ], - "1": [ - "1.0", - "float", - {} - ], - "2": [ - "ZeroDivisionError: division by zero", - -1, - {} - ], - "3": [ - "1.0", - "float", - {} - ] - }, - "49": [ - "", - -2, - {} - ], - "50": [ - "", - -2, - {} - ], - "51": [ - "", - -2, - {} - ], - "52": [ - "", - -2, - {} - ], - "527": { - "1": { - "0": [ - "[[], []]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], []]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ] - } - }, - "53": [ - "", - -2, - { - "inner_calls": [ - "test_id_6", - "test_id_7" - ] - } - ], - "534": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ] - }, - "54": [ - "", - -2, - {} - ], - "546": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "55": [ - "", - -2, - {} - ], - "56": [ - "", - -2, - {} - ], - "57": [ - "", - -2, - {} - ], - "58": [ - "", - -2, - {} - ], - "59": [ - "", - -2, - {} - ], - "60": [ - "", - -2, - {} - ], - "61": [ - "", - -2, - {} - ], - "62": [ - "", - -2, - {} - ], - "63": [ - "", - -2, - {} - ], - "64": [ - "", - -2, - {} - ], - "65": [ - "", - -2, - {} - ], - "66": [ - "", - -2, - {} - ], - "67": [ - "", - -2, - {} - ], - "68": [ - "", - -2, - {} - ], - "69": [ - "", - -2, - {} - ], - "70": [ - "", - -2, - {} - ], - "71": [ - "", - -2, - {} - ], - "72": [ - "", - -2, - {} - ], - "73": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 65, - "start": 64, - "tree_index": 46 - }, - { - "end": 205, - "start": 204, - "tree_index": 47 - }, - { - "end": 1254, - "start": 1250, - "tree_index": 66 - }, - { - "end": 118, - "start": 117, - "tree_index": 128 - }, - { - "end": 438, - "start": 437, - "tree_index": 240 - }, - { - "end": 417, - "start": 416, - "tree_index": 335 - }, - { - "end": 471, - "start": 470, - "tree_index": 340 - }, - { - "end": 503, - "start": 502, - "tree_index": 343 - }, - { - "end": 539, - "start": 538, - "tree_index": 347 - } - ], - "node_loops": { - "127": [ - 46 - ], - "128": [ - 46 - ], - "131": [ - 47 - ], - "132": [ - 47 - ], - "162": [ - 66 - ], - "221": [ - 46 - ], - "223": [ - 46 - ], - "224": [ - 46, - 128 - ], - "225": [ - 46, - 128 - ], - "229": [ - 47 - ], - "231": [ - 47 - ], - "232": [ - 47 - ], - "239": [ - 240 - ], - "317": [ - 46 - ], - "320": [ - 46 - ], - "321": [ - 46 - ], - "322": [ - 46, - 128 - ], - "323": [ - 46, - 128 - ], - "325": [ - 47 - ], - "326": [ - 47 - ], - "327": [ - 47 - ], - "328": [ - 47 - ], - "334": [ - 240, - 335 - ], - "335": [ - 240 - ], - "339": [ - 340 - ], - "342": [ - 343 - ], - "345": [ - 347 - ], - "346": [ - 347 - ], - "405": [ - 46 - ], - "411": [ - 46 - ], - "412": [ - 46, - 128 - ], - "413": [ - 46, - 128 - ], - "414": [ - 46, - 128 - ], - "415": [ - 46, - 128 - ], - "416": [ - 47 - ], - "417": [ - 47 - ], - "422": [ - 240, - 335 - ], - "424": [ - 240, - 335 - ], - "426": [ - 240 - ], - "478": [ - 46, - 128 - ], - "480": [ - 46, - 128 - ], - "482": [ - 46, - 128 - ], - "486": [ - 47 - ], - "492": [ - 240 - ], - "527": [ - 46, - 128 - ], - "534": [ - 47 - ], - "546": [ - 47 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 40, - "start": 16, - "tree_index": 44 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 55, - "start": 46, - "tree_index": 45 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 194, - "start": 56, - "tree_index": 46 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 359, - "start": 196, - "tree_index": 47 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 390, - "start": 365, - "tree_index": 48 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 453, - "start": 395, - "tree_index": 49 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 484, - "start": 458, - "tree_index": 50 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 517, - "start": 489, - "tree_index": 51 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 553, - "start": 522, - "tree_index": 52 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 578, - "start": 554, - "tree_index": 53 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 605, - "start": 583, - "tree_index": 54 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 812, - "start": 611, - "tree_index": 55 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 880, - "start": 818, - "tree_index": 56 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 922, - "start": 886, - "tree_index": 57 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 933, - "start": 928, - "tree_index": 58 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 944, - "start": 938, - "tree_index": 59 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 962, - "start": 949, - "tree_index": 60 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 972, - "start": 967, - "tree_index": 61 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1002, - "start": 978, - "tree_index": 62 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1032, - "start": 1008, - "tree_index": 63 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1067, - "start": 1037, - "tree_index": 64 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1238, - "start": 1069, - "tree_index": 65 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 1269, - "start": 1240, - "tree_index": 66 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1307, - "start": 1275, - "tree_index": 67 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1321, - "start": 1313, - "tree_index": 68 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1331, - "start": 1326, - "tree_index": 69 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1349, - "start": 1336, - "tree_index": 70 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1364, - "start": 1355, - "tree_index": 71 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1381, - "start": 1369, - "tree_index": 72 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1398, - "start": 1386, - "tree_index": 73 - }, - { - "classes": [], - "depth": 3, - "end": 40, - "start": 23, - "tree_index": 122 - }, - { - "classes": [], - "depth": 3, - "end": 79, - "start": 69, - "tree_index": 126 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 104, - "start": 89, - "tree_index": 127 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 194, - "start": 105, - "tree_index": 128 - }, - { - "classes": [], - "depth": 3, - "end": 217, - "start": 209, - "tree_index": 130 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 322, - "start": 219, - "tree_index": 131 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 359, - "start": 323, - "tree_index": 132 - }, - { - "classes": [], - "depth": 3, - "end": 390, - "start": 369, - "tree_index": 134 - }, - { - "classes": [], - "depth": 3, - "end": 453, - "start": 404, - "tree_index": 136 - }, - { - "classes": [], - "depth": 3, - "end": 484, - "start": 458, - "tree_index": 137 - }, - { - "classes": [], - "depth": 3, - "end": 517, - "start": 489, - "tree_index": 138 - }, - { - "classes": [], - "depth": 3, - "end": 553, - "start": 522, - "tree_index": 139 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 578, - "start": 574, - "tree_index": 141 - }, - { - "classes": [], - "depth": 3, - "end": 605, - "start": 583, - "tree_index": 142 - }, - { - "classes": [], - "depth": 3, - "end": 812, - "start": 618, - "tree_index": 143 - }, - { - "classes": [], - "depth": 3, - "end": 880, - "start": 825, - "tree_index": 144 - }, - { - "classes": [], - "depth": 3, - "end": 922, - "start": 893, - "tree_index": 145 - }, - { - "classes": [], - "depth": 3, - "end": 962, - "start": 956, - "tree_index": 151 - }, - { - "classes": [], - "depth": 3, - "end": 1002, - "start": 978, - "tree_index": 153 - }, - { - "classes": [], - "depth": 3, - "end": 1032, - "start": 1015, - "tree_index": 154 - }, - { - "classes": [], - "depth": 3, - "end": 1067, - "start": 1044, - "tree_index": 155 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1104, - "start": 1086, - "tree_index": 156 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1238, - "start": 1231, - "tree_index": 160 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1269, - "start": 1264, - "tree_index": 162 - }, - { - "classes": [], - "depth": 3, - "end": 1307, - "start": 1282, - "tree_index": 163 - }, - { - "classes": [], - "depth": 3, - "end": 1349, - "start": 1343, - "tree_index": 166 - }, - { - "classes": [], - "depth": 3, - "end": 1364, - "start": 1359, - "tree_index": 168 - }, - { - "classes": [], - "depth": 3, - "end": 1381, - "start": 1369, - "tree_index": 169 - }, - { - "classes": [], - "depth": 3, - "end": 1398, - "start": 1386, - "tree_index": 170 - }, - { - "classes": [], - "depth": 4, - "end": 35, - "start": 23, - "tree_index": 213 - }, - { - "classes": [], - "depth": 4, - "end": 74, - "start": 69, - "tree_index": 219 - }, - { - "classes": [], - "depth": 4, - "end": 104, - "start": 89, - "tree_index": 221 - }, - { - "classes": [], - "depth": 4, - "end": 134, - "start": 122, - "tree_index": 223 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 170, - "start": 148, - "tree_index": 224 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 194, - "start": 183, - "tree_index": 225 - }, - { - "classes": [], - "depth": 4, - "end": 214, - "start": 209, - "tree_index": 227 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 267, - "start": 244, - "tree_index": 229 - }, - { - "classes": [], - "depth": 4, - "end": 340, - "start": 334, - "tree_index": 231 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 359, - "start": 354, - "tree_index": 232 - }, - { - "classes": [], - "depth": 4, - "end": 378, - "start": 369, - "tree_index": 234 - }, - { - "classes": [], - "depth": 4, - "end": 390, - "start": 381, - "tree_index": 236 - }, - { - "classes": [], - "depth": 4, - "end": 396, - "start": 395, - "tree_index": 237 - }, - { - "classes": [], - "depth": 4, - "end": 432, - "start": 405, - "tree_index": 239 - }, - { - "classes": [ - "loop" - ], - "depth": 4, - "end": 452, - "start": 433, - "tree_index": 240 - }, - { - "classes": [], - "depth": 4, - "end": 461, - "start": 458, - "tree_index": 241 - }, - { - "classes": [], - "depth": 4, - "end": 483, - "start": 464, - "tree_index": 242 - }, - { - "classes": [], - "depth": 4, - "end": 494, - "start": 489, - "tree_index": 243 - }, - { - "classes": [], - "depth": 4, - "end": 516, - "start": 495, - "tree_index": 244 - }, - { - "classes": [], - "depth": 4, - "end": 527, - "start": 522, - "tree_index": 245 - }, - { - "classes": [], - "depth": 4, - "end": 552, - "start": 528, - "tree_index": 246 - }, - { - "classes": [], - "depth": 4, - "end": 564, - "start": 563, - "tree_index": 247 - }, - { - "classes": [], - "depth": 4, - "end": 588, - "start": 583, - "tree_index": 248 - }, - { - "classes": [], - "depth": 4, - "end": 604, - "start": 589, - "tree_index": 249 - }, - { - "classes": [], - "depth": 4, - "end": 729, - "start": 618, - "tree_index": 250 - }, - { - "classes": [], - "depth": 4, - "end": 812, - "start": 733, - "tree_index": 252 - }, - { - "classes": [], - "depth": 4, - "end": 859, - "start": 825, - "tree_index": 253 - }, - { - "classes": [], - "depth": 4, - "end": 917, - "start": 893, - "tree_index": 256 - }, - { - "classes": [], - "depth": 4, - "end": 957, - "start": 956, - "tree_index": 261 - }, - { - "classes": [], - "depth": 4, - "end": 983, - "start": 978, - "tree_index": 265 - }, - { - "classes": [], - "depth": 4, - "end": 1027, - "start": 1015, - "tree_index": 269 - }, - { - "classes": [], - "depth": 4, - "end": 1057, - "start": 1044, - "tree_index": 272 - }, - { - "classes": [], - "depth": 4, - "end": 1104, - "start": 1092, - "tree_index": 275 - }, - { - "classes": [], - "depth": 4, - "end": 1130, - "start": 1116, - "tree_index": 276 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1149, - "start": 1145, - "tree_index": 277 - }, - { - "classes": [], - "depth": 4, - "end": 1170, - "start": 1161, - "tree_index": 278 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1184, - "start": 1180, - "tree_index": 279 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1209, - "start": 1205, - "tree_index": 280 - }, - { - "classes": [], - "depth": 4, - "end": 1238, - "start": 1231, - "tree_index": 281 - }, - { - "classes": [], - "depth": 4, - "end": 1302, - "start": 1282, - "tree_index": 282 - }, - { - "classes": [], - "depth": 4, - "end": 1344, - "start": 1343, - "tree_index": 286 - }, - { - "classes": [], - "depth": 4, - "end": 1362, - "start": 1359, - "tree_index": 290 - }, - { - "classes": [], - "depth": 4, - "end": 1378, - "start": 1369, - "tree_index": 291 - }, - { - "classes": [], - "depth": 4, - "end": 1380, - "start": 1379, - "tree_index": 292 - }, - { - "classes": [], - "depth": 4, - "end": 1395, - "start": 1386, - "tree_index": 293 - }, - { - "classes": [], - "depth": 4, - "end": 1397, - "start": 1396, - "tree_index": 294 - }, - { - "classes": [], - "depth": 5, - "end": 32, - "start": 23, - "tree_index": 314 - }, - { - "classes": [], - "depth": 5, - "end": 100, - "start": 89, - "tree_index": 317 - }, - { - "classes": [], - "depth": 5, - "end": 127, - "start": 122, - "tree_index": 320 - }, - { - "classes": [], - "depth": 5, - "end": 133, - "start": 128, - "tree_index": 321 - }, - { - "classes": [], - "depth": 5, - "end": 170, - "start": 148, - "tree_index": 322 - }, - { - "classes": [], - "depth": 5, - "end": 194, - "start": 183, - "tree_index": 323 - }, - { - "classes": [], - "depth": 5, - "end": 267, - "start": 244, - "tree_index": 325 - }, - { - "classes": [], - "depth": 5, - "end": 300, - "start": 283, - "tree_index": 326 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 322, - "start": 314, - "tree_index": 327 - }, - { - "classes": [], - "depth": 5, - "end": 335, - "start": 334, - "tree_index": 328 - }, - { - "classes": [], - "depth": 5, - "end": 376, - "start": 369, - "tree_index": 331 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 381, - "tree_index": 332 - }, - { - "classes": [], - "depth": 5, - "end": 411, - "start": 406, - "tree_index": 334 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 431, - "start": 412, - "tree_index": 335 - }, - { - "classes": [], - "depth": 5, - "end": 452, - "start": 442, - "tree_index": 337 - }, - { - "classes": [], - "depth": 5, - "end": 465, - "start": 464, - "tree_index": 339 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 483, - "start": 466, - "tree_index": 340 - }, - { - "classes": [], - "depth": 5, - "end": 497, - "start": 496, - "tree_index": 342 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 515, - "start": 498, - "tree_index": 343 - }, - { - "classes": [], - "depth": 5, - "end": 530, - "start": 529, - "tree_index": 345 - }, - { - "classes": [], - "depth": 5, - "end": 533, - "start": 532, - "tree_index": 346 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 551, - "start": 534, - "tree_index": 347 - }, - { - "classes": [], - "depth": 5, - "end": 590, - "start": 589, - "tree_index": 350 - }, - { - "classes": [], - "depth": 5, - "end": 604, - "start": 593, - "tree_index": 352 - }, - { - "classes": [], - "depth": 5, - "end": 630, - "start": 618, - "tree_index": 353 - }, - { - "classes": [], - "depth": 5, - "end": 657, - "start": 640, - "tree_index": 354 - }, - { - "classes": [], - "depth": 5, - "end": 751, - "start": 734, - "tree_index": 358 - }, - { - "classes": [], - "depth": 5, - "end": 811, - "start": 782, - "tree_index": 360 - }, - { - "classes": [], - "depth": 5, - "end": 837, - "start": 825, - "tree_index": 362 - }, - { - "classes": [], - "depth": 5, - "end": 845, - "start": 838, - "tree_index": 363 - }, - { - "classes": [], - "depth": 5, - "end": 897, - "start": 893, - "tree_index": 369 - }, - { - "classes": [], - "depth": 5, - "end": 916, - "start": 898, - "tree_index": 370 - }, - { - "classes": [], - "depth": 5, - "end": 1102, - "start": 1092, - "tree_index": 382 - }, - { - "classes": [], - "depth": 5, - "end": 1236, - "start": 1231, - "tree_index": 385 - }, - { - "classes": [], - "depth": 5, - "end": 1298, - "start": 1283, - "tree_index": 386 - }, - { - "classes": [], - "depth": 6, - "end": 93, - "start": 89, - "tree_index": 405 - }, - { - "classes": [], - "depth": 6, - "end": 133, - "start": 132, - "tree_index": 411 - }, - { - "classes": [], - "depth": 6, - "end": 163, - "start": 148, - "tree_index": 412 - }, - { - "classes": [], - "depth": 6, - "end": 169, - "start": 164, - "tree_index": 413 - }, - { - "classes": [], - "depth": 6, - "end": 188, - "start": 183, - "tree_index": 414 - }, - { - "classes": [], - "depth": 6, - "end": 193, - "start": 189, - "tree_index": 415 - }, - { - "classes": [], - "depth": 6, - "end": 249, - "start": 244, - "tree_index": 416 - }, - { - "classes": [], - "depth": 6, - "end": 266, - "start": 250, - "tree_index": 417 - }, - { - "classes": [], - "depth": 6, - "end": 407, - "start": 406, - "tree_index": 422 - }, - { - "classes": [], - "depth": 6, - "end": 411, - "start": 410, - "tree_index": 424 - }, - { - "classes": [], - "depth": 6, - "end": 431, - "start": 421, - "tree_index": 426 - }, - { - "classes": [], - "depth": 6, - "end": 447, - "start": 442, - "tree_index": 428 - }, - { - "classes": [], - "depth": 6, - "end": 483, - "start": 475, - "tree_index": 432 - }, - { - "classes": [], - "depth": 6, - "end": 515, - "start": 507, - "tree_index": 435 - }, - { - "classes": [], - "depth": 6, - "end": 551, - "start": 543, - "tree_index": 439 - }, - { - "classes": [], - "depth": 6, - "end": 602, - "start": 593, - "tree_index": 441 - }, - { - "classes": [], - "depth": 6, - "end": 644, - "start": 640, - "tree_index": 443 - }, - { - "classes": [], - "depth": 6, - "end": 656, - "start": 645, - "tree_index": 444 - }, - { - "classes": [], - "depth": 6, - "end": 738, - "start": 734, - "tree_index": 447 - }, - { - "classes": [], - "depth": 6, - "end": 750, - "start": 739, - "tree_index": 448 - }, - { - "classes": [], - "depth": 6, - "end": 786, - "start": 782, - "tree_index": 449 - }, - { - "classes": [], - "depth": 6, - "end": 1298, - "start": 1293, - "tree_index": 474 - }, - { - "classes": [], - "depth": 7, - "end": 156, - "start": 148, - "tree_index": 478 - }, - { - "classes": [], - "depth": 7, - "end": 165, - "start": 164, - "tree_index": 480 - }, - { - "classes": [], - "depth": 7, - "end": 169, - "start": 168, - "tree_index": 482 - }, - { - "classes": [], - "depth": 7, - "end": 261, - "start": 250, - "tree_index": 486 - }, - { - "classes": [], - "depth": 7, - "end": 426, - "start": 421, - "tree_index": 492 - }, - { - "classes": [], - "depth": 7, - "end": 480, - "start": 475, - "tree_index": 496 - }, - { - "classes": [], - "depth": 7, - "end": 512, - "start": 507, - "tree_index": 499 - }, - { - "classes": [], - "depth": 7, - "end": 548, - "start": 543, - "tree_index": 502 - }, - { - "classes": [], - "depth": 7, - "end": 650, - "start": 645, - "tree_index": 506 - }, - { - "classes": [], - "depth": 7, - "end": 744, - "start": 739, - "tree_index": 511 - }, - { - "classes": [], - "depth": 7, - "end": 1294, - "start": 1293, - "tree_index": 524 - }, - { - "classes": [], - "depth": 8, - "end": 152, - "start": 148, - "tree_index": 527 - }, - { - "classes": [], - "depth": 8, - "end": 260, - "start": 255, - "tree_index": 534 - }, - { - "classes": [], - "depth": 9, - "end": 256, - "start": 255, - "tree_index": 546 - } - ] - }, - "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n sum (n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", - "lineno": 63, - "name": "main" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "3" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "3", - "int", - {} - ], - "177": [ - "3", - "int", - {} - ], - "179": [ - "2", - "int", - { - "inner_calls": [ - "test_id_3" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "299": [ - "2", - "int", - {} - ], - "395": [ - "3", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "6", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "6", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "2" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "2", - "int", - {} - ], - "177": [ - "2", - "int", - {} - ], - "179": [ - "1", - "int", - { - "inner_calls": [ - "test_id_4" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "299": [ - "1", - "int", - {} - ], - "395": [ - "2", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "2", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "2", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "1" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "1", - "int", - {} - ], - "19": [ - "", - -2, - {} - ], - "78": [ - "True", - "bool", - {} - ], - "79": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "1", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ], - "204": [ - "", - "MyClass", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "getset_descriptor", - "int", - "list", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 204 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "117": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 117 - } - ] - }, - "html_body": " @eye\n def __enter__(self):\n pass", - "lineno": 54, - "name": "MyClass.__enter__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "exc_type", - "None" - ], - [ - "exc_val", - "None" - ], - [ - "exc_tb", - "None" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "120": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 59, - "start": 55, - "tree_index": 120 - } - ] - }, - "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", - "lineno": 58, - "name": "MyClass.__exit__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ], - "204": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 204 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "[0, 1, 2, ..., 997, 998, 999]" - ], - [ - "pos2", - "'hello'" - ], - [ - "key1", - "3" - ], - [ - "key2", - "8" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'kwarg1': {'key': 'value'}}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "186": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "187": [ - "'hello'", - "str", - { - "len": 5 - } - ], - "188": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "96": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 96 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 187 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 188 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "1" - ], - [ - "pos2", - "2" - ], - [ - "key1", - "3" - ], - [ - "key2", - "4" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'k': 23}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "186": [ - "1", - "int", - {} - ], - "187": [ - "2", - "int", - {} - ], - "188": [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "96": [ - "[1, 2, {'k': 23}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 96 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 187 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 188 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[1, 2, {'k': 23}]", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "34": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "104": [ - "", - "islice", - {} - ], - "105": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "195": [ - "", - "type", - {}, - [ - "__doc__", - [ - "'islice(iterab...s an iterator.'", - "str", - { - "len": 454 - } - ] - ], - [ - "__getattribute__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__iter__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__new__", - [ - "", - "builtin_function_or_method", - {} - ] - ], - [ - "__next__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__reduce__", - [ - "", - "method_descriptor", - {} - ] - ], - [ - "__setstate__", - [ - "", - "method_descriptor", - {} - ] - ] - ], - "196": [ - "", - "generator", - {} - ], - "198": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "309": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "310": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "34": [ - "", - -2, - { - "inner_calls": [ - "test_id_12" - ] - } - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 34 - } - ], - "node_loops": { - "105": [ - 34 - ], - "198": [ - 34 - ], - "309": [ - 34 - ], - "310": [ - 34 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 61, - "start": 18, - "tree_index": 34 - }, - { - "classes": [], - "depth": 3, - "end": 43, - "start": 31, - "tree_index": 104 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 61, - "start": 53, - "tree_index": 105 - }, - { - "classes": [], - "depth": 4, - "end": 37, - "start": 31, - "tree_index": 195 - }, - { - "classes": [], - "depth": 4, - "end": 39, - "start": 38, - "tree_index": 196 - }, - { - "classes": [], - "depth": 4, - "end": 61, - "start": 53, - "tree_index": 198 - }, - { - "classes": [], - "depth": 5, - "end": 58, - "start": 53, - "tree_index": 309 - }, - { - "classes": [], - "depth": 5, - "end": 60, - "start": 59, - "tree_index": 310 - } - ] - }, - "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", - "lineno": 37, - "name": "use_gen_1" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "31": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - }, - { - "index": 4, - "loops": {} - }, - { - "index": 5, - "loops": {} - } - ] - }, - "node_values": { - "100": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "193": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "306": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ], - "4": [ - "4", - "int", - {} - ], - "5": [ - "5", - "int", - {} - ] - }, - "31": [ - "", - -2, - {} - ], - "99": [ - "range(0, 6)", - "range", - { - "len": 6 - } - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 20, - "start": 19, - "tree_index": 31 - } - ], - "node_loops": { - "100": [ - 31 - ], - "193": [ - 31 - ], - "306": [ - 31 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 49, - "start": 11, - "tree_index": 31 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 24, - "tree_index": 99 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 42, - "tree_index": 100 - }, - { - "classes": [], - "depth": 4, - "end": 29, - "start": 24, - "tree_index": 191 - }, - { - "classes": [], - "depth": 4, - "end": 49, - "start": 42, - "tree_index": 193 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 306 - } - ] - }, - "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", - "lineno": 31, - "name": "gen" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "37": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "109": [ - "", - "generator", - {} - ], - "110": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "201": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "311": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "312": { - "0": [ - "3", - "int", - {} - ], - "1": [ - "4", - "int", - {} - ], - "2": [ - "5", - "int", - {} - ] - }, - "37": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 37 - } - ], - "node_loops": { - "110": [ - 37 - ], - "201": [ - 37 - ], - "311": [ - 37 - ], - "312": [ - 37 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 50, - "start": 18, - "tree_index": 37 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 31, - "tree_index": 109 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 50, - "start": 42, - "tree_index": 110 - }, - { - "classes": [], - "depth": 4, - "end": 50, - "start": 42, - "tree_index": 201 - }, - { - "classes": [], - "depth": 5, - "end": 47, - "start": 42, - "tree_index": 311 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 312 - } - ] - }, - "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", - "lineno": 43, - "name": "use_gen_2" - }, - "return_value": "None", - "traceback": null - } -] \ No newline at end of file diff --git a/tests/golden-files/3.5/traced.json b/tests/golden-files/3.5/traced.json deleted file mode 100644 index 21906f6..0000000 --- a/tests/golden-files/3.5/traced.json +++ /dev/null @@ -1,1968 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": {}, - "node_values": { - "1": [ - "", - -2, - {} - ], - "13": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_15" - ] - } - ], - "2": [ - "", - -2, - {} - ], - "27": [ - "", - "function", - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "node_loops": { - "103": [ - 104 - ], - "105": [ - 82 - ], - "117": [ - 100, - 118 - ], - "118": [ - 100 - ], - "121": [ - 104 - ], - "123": [ - 104 - ], - "127": [ - 82 - ], - "136": [ - 100, - 118 - ], - "140": [ - 100 - ], - "150": [ - 82 - ], - "152": [ - 82 - ], - "157": [ - 100 - ], - "158": [ - 100 - ], - "34": [ - 19 - ], - "53": [ - 19 - ], - "72": [ - 19 - ], - "73": [ - 19 - ], - "81": [ - 82 - ], - "95": [ - 19 - ], - "97": [ - 19 - ], - "99": [ - 100 - ] - } - }, - "html_body": "import birdseye.trace_module_deep\n\n\ndef deco(f):\n return f\n\n\ndef m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()\n\n\nm()", - "lineno": 1, - "name": "$$__FILE__$$" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "100": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "118": [ - { - "index": 0, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "118": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - } - ], - "19": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ], - "82": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "10": [ - "", - -2, - {} - ], - "100": [ - "", - -2, - {} - ], - "105": { - "0": [ - ".A.. at 0xABC>", - "function", - {} - ], - "1": [ - ".A.. at 0xABC>", - "function", - {} - ], - "2": [ - ".A.. at 0xABC>", - "function", - {} - ] - }, - "108": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "11": [ - "", - -2, - {} - ], - "113": [ - ".A object at 0xABC>", - "m..A", - {} - ], - "117": { - "1": { - "0": [ - "0", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - } - }, - "118": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "12": [ - "", - -2, - {} - ], - "120": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "135": [ - ".A'>", - "type", - {}, - [ - "B", - [ - ".A.B'>", - "type", - {}, - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.traced'", - "str", - { - "len": 19 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.traced'", - "str", - { - "len": 19 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "bar", - [ - ".A.bar at 0xABC>", - "function", - {} - ] - ], - [ - "foo", - [ - ".A.foo at 0xABC>", - "function", - {} - ] - ], - [ - "i", - [ - "2", - "int", - {} - ] - ] - ], - "136": { - "1": { - "0": [ - "0", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - } - }, - "140": { - "0": [ - "range(0, 0)", - "range", - { - "len": 0 - } - ], - "1": [ - "range(0, 1)", - "range", - { - "len": 1 - } - ], - "2": [ - "range(0, 2)", - "range", - { - "len": 2 - } - ] - }, - "158": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "18": [ - "'9'", - "str", - { - "len": 1 - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "21": [ - "", - -2, - {} - ], - "22": [ - "", - -2, - {} - ], - "23": [ - "", - -2, - {} - ], - "24": [ - "", - -2, - { - "inner_calls": [ - "test_id_16" - ] - } - ], - "25": [ - "", - -2, - {} - ], - "26": [ - "4", - "int", - { - "inner_calls": [ - "test_id_18" - ] - } - ], - "31": [ - "9", - "int", - {} - ], - "33": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "34": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "35": [ - "", - -2, - {} - ], - "36": [ - "9", - "int", - {} - ], - "37": [ - "[0, 8, 16]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "8", - "int", - {} - ] - ], - [ - "2", - [ - "16", - "int", - {} - ] - ] - ], - "38": [ - "'{8, 9, 7}'", - "str", - { - "len": 9 - } - ], - "43": [ - "", - "function", - {} - ], - "46": [ - ".A.bar of .A object at 0xABC>>", - "method", - {} - ], - "53": { - "0": [ - "'0'", - "str", - { - "len": 1 - } - ], - "1": [ - "'1'", - "str", - { - "len": 1 - } - ], - "2": [ - "'4'", - "str", - { - "len": 1 - } - ] - }, - "54": [ - "'[[], [0], [0, 2]]'", - "str", - { - "len": 17 - } - ], - "55": [ - ".A. at 0xABC>", - "function", - {} - ], - "57": [ - ".A. at 0xABC>", - "function", - {} - ], - "60": [ - "{8, 9, 7}", - "set", - { - "len": 3 - }, - [ - "<0>", - [ - "8", - "int", - {} - ] - ], - [ - "<1>", - [ - "9", - "int", - {} - ] - ], - [ - "<2>", - [ - "7", - "int", - {} - ] - ] - ], - "69": [ - ".A object at 0xABC>", - "m..A", - { - "inner_calls": [ - "test_id_17" - ] - } - ], - "73": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ] - }, - "75": [ - "[[], [0], [0, 2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[0, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "81": { - "0": [ - "7", - "int", - {} - ], - "1": [ - "8", - "int", - {} - ], - "2": [ - "9", - "int", - {} - ] - }, - "82": [ - "", - -2, - {} - ], - "9": [ - "", - -2, - {} - ], - "93": [ - ".A.foo of .A object at 0xABC>>", - "method", - {} - ], - "95": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "97": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "99": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "2": [ - "[0, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - } - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 61, - "start": 60, - "tree_index": 19 - }, - { - "end": 314, - "start": 313, - "tree_index": 82 - }, - { - "end": 181, - "start": 180, - "tree_index": 100 - }, - { - "end": 257, - "start": 256, - "tree_index": 104 - }, - { - "end": 145, - "start": 144, - "tree_index": 118 - } - ], - "node_loops": { - "103": [ - 104 - ], - "105": [ - 82 - ], - "117": [ - 100, - 118 - ], - "118": [ - 100 - ], - "121": [ - 104 - ], - "123": [ - 104 - ], - "127": [ - 82 - ], - "136": [ - 100, - 118 - ], - "140": [ - 100 - ], - "150": [ - 82 - ], - "152": [ - 82 - ], - "157": [ - 100 - ], - "158": [ - 100 - ], - "34": [ - 19 - ], - "53": [ - 19 - ], - "72": [ - 19 - ], - "73": [ - 19 - ], - "81": [ - 82 - ], - "95": [ - 19 - ], - "97": [ - 19 - ], - "99": [ - 100 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 1, - "end": 509, - "start": 0, - "tree_index": 3 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 20, - "start": 13, - "tree_index": 9 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 33, - "start": 25, - "tree_index": 10 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 488, - "start": 35, - "tree_index": 11 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 509, - "start": 494, - "tree_index": 12 - }, - { - "classes": [], - "depth": 3, - "end": 33, - "start": 25, - "tree_index": 18 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 97, - "start": 48, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 195, - "start": 99, - "tree_index": 20 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 225, - "start": 205, - "tree_index": 21 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 274, - "start": 234, - "tree_index": 22 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 328, - "start": 283, - "tree_index": 23 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 439, - "start": 330, - "tree_index": 24 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 488, - "start": 441, - "tree_index": 25 - }, - { - "classes": [], - "depth": 3, - "end": 509, - "start": 494, - "tree_index": 26 - }, - { - "classes": [], - "depth": 4, - "end": 28, - "start": 25, - "tree_index": 30 - }, - { - "classes": [], - "depth": 4, - "end": 32, - "start": 29, - "tree_index": 31 - }, - { - "classes": [], - "depth": 4, - "end": 73, - "start": 65, - "tree_index": 33 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 97, - "start": 87, - "tree_index": 34 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 195, - "start": 128, - "tree_index": 35 - }, - { - "classes": [], - "depth": 4, - "end": 225, - "start": 205, - "tree_index": 36 - }, - { - "classes": [], - "depth": 4, - "end": 274, - "start": 234, - "tree_index": 37 - }, - { - "classes": [], - "depth": 4, - "end": 328, - "start": 283, - "tree_index": 38 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 388, - "start": 379, - "tree_index": 40 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 415, - "start": 401, - "tree_index": 41 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 439, - "start": 428, - "tree_index": 42 - }, - { - "classes": [], - "depth": 4, - "end": 343, - "start": 339, - "tree_index": 43 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 488, - "start": 476, - "tree_index": 45 - }, - { - "classes": [], - "depth": 4, - "end": 507, - "start": 494, - "tree_index": 46 - }, - { - "classes": [], - "depth": 5, - "end": 70, - "start": 65, - "tree_index": 51 - }, - { - "classes": [], - "depth": 5, - "end": 97, - "start": 87, - "tree_index": 53 - }, - { - "classes": [], - "depth": 5, - "end": 195, - "start": 128, - "tree_index": 54 - }, - { - "classes": [], - "depth": 5, - "end": 218, - "start": 206, - "tree_index": 55 - }, - { - "classes": [], - "depth": 5, - "end": 270, - "start": 235, - "tree_index": 57 - }, - { - "classes": [], - "depth": 5, - "end": 286, - "start": 283, - "tree_index": 59 - }, - { - "classes": [], - "depth": 5, - "end": 327, - "start": 287, - "tree_index": 60 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 383, - "tree_index": 63 - }, - { - "classes": [], - "depth": 5, - "end": 415, - "start": 401, - "tree_index": 64 - }, - { - "classes": [], - "depth": 5, - "end": 439, - "start": 435, - "tree_index": 65 - }, - { - "classes": [], - "depth": 5, - "end": 488, - "start": 483, - "tree_index": 68 - }, - { - "classes": [], - "depth": 5, - "end": 503, - "start": 494, - "tree_index": 69 - }, - { - "classes": [], - "depth": 6, - "end": 90, - "start": 87, - "tree_index": 72 - }, - { - "classes": [], - "depth": 6, - "end": 96, - "start": 91, - "tree_index": 73 - }, - { - "classes": [], - "depth": 6, - "end": 131, - "start": 128, - "tree_index": 74 - }, - { - "classes": [], - "depth": 6, - "end": 194, - "start": 132, - "tree_index": 75 - }, - { - "classes": [], - "depth": 6, - "end": 270, - "start": 245, - "tree_index": 79 - }, - { - "classes": [], - "depth": 6, - "end": 308, - "start": 288, - "tree_index": 81 - }, - { - "classes": [ - "loop" - ], - "depth": 6, - "end": 326, - "start": 309, - "tree_index": 82 - }, - { - "classes": [], - "depth": 6, - "end": 404, - "start": 401, - "tree_index": 87 - }, - { - "classes": [], - "depth": 6, - "end": 414, - "start": 405, - "tree_index": 88 - }, - { - "classes": [], - "depth": 6, - "end": 501, - "start": 494, - "tree_index": 93 - }, - { - "classes": [], - "depth": 7, - "end": 92, - "start": 91, - "tree_index": 95 - }, - { - "classes": [], - "depth": 7, - "end": 96, - "start": 95, - "tree_index": 97 - }, - { - "classes": [], - "depth": 7, - "end": 158, - "start": 133, - "tree_index": 99 - }, - { - "classes": [ - "loop" - ], - "depth": 7, - "end": 193, - "start": 176, - "tree_index": 100 - }, - { - "classes": [], - "depth": 7, - "end": 251, - "start": 246, - "tree_index": 103 - }, - { - "classes": [ - "loop" - ], - "depth": 7, - "end": 269, - "start": 252, - "tree_index": 104 - }, - { - "classes": [], - "depth": 7, - "end": 304, - "start": 289, - "tree_index": 105 - }, - { - "classes": [], - "depth": 7, - "end": 326, - "start": 318, - "tree_index": 108 - }, - { - "classes": [], - "depth": 7, - "end": 410, - "start": 405, - "tree_index": 110 - }, - { - "classes": [], - "depth": 7, - "end": 414, - "start": 413, - "tree_index": 112 - }, - { - "classes": [], - "depth": 7, - "end": 497, - "start": 494, - "tree_index": 113 - }, - { - "classes": [], - "depth": 8, - "end": 139, - "start": 134, - "tree_index": 117 - }, - { - "classes": [ - "loop" - ], - "depth": 8, - "end": 157, - "start": 140, - "tree_index": 118 - }, - { - "classes": [], - "depth": 8, - "end": 193, - "start": 185, - "tree_index": 120 - }, - { - "classes": [], - "depth": 8, - "end": 247, - "start": 246, - "tree_index": 121 - }, - { - "classes": [], - "depth": 8, - "end": 251, - "start": 250, - "tree_index": 123 - }, - { - "classes": [], - "depth": 8, - "end": 269, - "start": 261, - "tree_index": 125 - }, - { - "classes": [], - "depth": 8, - "end": 304, - "start": 299, - "tree_index": 127 - }, - { - "classes": [], - "depth": 8, - "end": 323, - "start": 318, - "tree_index": 129 - }, - { - "classes": [], - "depth": 8, - "end": 495, - "start": 494, - "tree_index": 135 - }, - { - "classes": [], - "depth": 9, - "end": 135, - "start": 134, - "tree_index": 136 - }, - { - "classes": [], - "depth": 9, - "end": 157, - "start": 149, - "tree_index": 140 - }, - { - "classes": [], - "depth": 9, - "end": 190, - "start": 185, - "tree_index": 142 - }, - { - "classes": [], - "depth": 9, - "end": 266, - "start": 261, - "tree_index": 147 - }, - { - "classes": [], - "depth": 9, - "end": 300, - "start": 299, - "tree_index": 150 - }, - { - "classes": [], - "depth": 9, - "end": 304, - "start": 303, - "tree_index": 152 - }, - { - "classes": [], - "depth": 10, - "end": 154, - "start": 149, - "tree_index": 157 - }, - { - "classes": [], - "depth": 10, - "end": 156, - "start": 155, - "tree_index": 158 - } - ] - }, - "html_body": "def m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()", - "lineno": 8, - "name": "m" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "f", - ".A.foo at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "15": [ - ".A.foo at 0xABC>", - "function", - {} - ], - "7": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 1, - "end": 25, - "start": 0, - "tree_index": 2 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 25, - "start": 17, - "tree_index": 7 - }, - { - "classes": [], - "depth": 3, - "end": 25, - "start": 24, - "tree_index": 15 - } - ] - }, - "html_body": "def deco(f):\n return f", - "lineno": 4, - "name": "deco" - }, - "return_value": ".A.foo at 0xABC>", - "traceback": null - }, - { - "arguments": [ - [ - "self", - ".A object at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "110": [ - "3", - "int", - {} - ], - "112": [ - "0", - "int", - {} - ], - "40": [ - "", - -2, - {} - ], - "41": [ - "", - -2, - {} - ], - "42": [ - "", - -2, - {} - ], - "63": [ - "0", - "int", - {} - ], - "64": [ - "'3'", - "str", - { - "len": 1 - } - ], - "65": [ - ".A object at 0xABC>", - "m..A", - {} - ], - "88": [ - "3", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 36, - "start": 27, - "tree_index": 40 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 63, - "start": 49, - "tree_index": 41 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 87, - "start": 76, - "tree_index": 42 - }, - { - "classes": [], - "depth": 5, - "end": 36, - "start": 31, - "tree_index": 63 - }, - { - "classes": [], - "depth": 5, - "end": 63, - "start": 49, - "tree_index": 64 - }, - { - "classes": [], - "depth": 5, - "end": 87, - "start": 83, - "tree_index": 65 - }, - { - "classes": [], - "depth": 6, - "end": 52, - "start": 49, - "tree_index": 87 - }, - { - "classes": [], - "depth": 6, - "end": 62, - "start": 53, - "tree_index": 88 - }, - { - "classes": [], - "depth": 7, - "end": 58, - "start": 53, - "tree_index": 110 - }, - { - "classes": [], - "depth": 7, - "end": 62, - "start": 61, - "tree_index": 112 - } - ] - }, - "html_body": " @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self", - "lineno": 24, - "name": "foo" - }, - "return_value": ".A object at 0xABC>", - "traceback": null - }, - { - "arguments": [ - [ - "self", - ".A object at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "45": [ - "", - -2, - {} - ], - "68": [ - "4", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 39, - "start": 27, - "tree_index": 45 - }, - { - "classes": [], - "depth": 5, - "end": 39, - "start": 34, - "tree_index": 68 - } - ] - }, - "html_body": " def bar(self):\n return 1 + 3", - "lineno": 30, - "name": "bar" - }, - "return_value": "4", - "traceback": null - } -] \ No newline at end of file diff --git a/tests/golden-files/3.6/gold.json b/tests/golden-files/3.6/gold.json deleted file mode 100644 index ae66b8d..0000000 --- a/tests/golden-files/3.6/gold.json +++ /dev/null @@ -1,13880 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": { - "240": [ - { - "index": 0, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 1, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - } - ], - "340": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "347": [ - { - "index": 0, - "loops": {} - } - ], - "46": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 191, - "loops": {} - }, - { - "index": 192, - "loops": {} - }, - { - "index": 193, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 193, - "loops": {} - }, - { - "index": 194, - "loops": {} - }, - { - "index": 195, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 195, - "loops": {} - }, - { - "index": 196, - "loops": {} - }, - { - "index": 197, - "loops": {} - } - ] - } - } - ], - "47": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "66": [ - { - "index": 0, - "loops": {} - } - ] - }, - "node_values": { - "122": [ - "True", - "bool", - {} - ], - "126": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "127": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "128": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "130": [ - "range(0, 6)", - "range", - { - "len": 6 - } - ], - "131": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "132": { - "1": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "134": [ - "", - "MyClass", - { - "inner_calls": [ - "test_id_5" - ] - } - ], - "136": [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "3", - [ - "[3, 4, 5, ..., 100, 101, 102]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "3", - "int", - {} - ] - ], - [ - "1", - [ - "4", - "int", - {} - ] - ], - [ - "2", - [ - "5", - "int", - {} - ] - ], - [ - "97", - [ - "100", - "int", - {} - ] - ], - [ - "98", - [ - "101", - "int", - {} - ] - ], - [ - "99", - [ - "102", - "int", - {} - ] - ] - ] - ], - [ - "4", - [ - "[4, 5, 6, ..., 101, 102, 103]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "4", - "int", - {} - ] - ], - [ - "1", - [ - "5", - "int", - {} - ] - ], - [ - "2", - [ - "6", - "int", - {} - ] - ], - [ - "97", - [ - "101", - "int", - {} - ] - ], - [ - "98", - [ - "102", - "int", - {} - ] - ], - [ - "99", - [ - "103", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 192, 193, 194]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "97", - [ - "192", - "int", - {} - ] - ], - [ - "98", - [ - "193", - "int", - {} - ] - ], - [ - "99", - [ - "194", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 193, 194, 195]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "97", - [ - "193", - "int", - {} - ] - ], - [ - "98", - [ - "194", - "int", - {} - ] - ], - [ - "99", - [ - "195", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ], - "137": [ - "6", - "int", - {} - ], - "138": [ - "None", - "NoneType", - {} - ], - "139": [ - "None", - "NoneType", - {} - ], - "141": [ - "", - -2, - {} - ], - "142": [ - "None", - "NoneType", - {} - ], - "143": [ - "True", - "bool", - {} - ], - "144": [ - "True", - "bool", - {} - ], - "145": [ - "True", - "bool", - {} - ], - "151": [ - "True", - "bool", - {} - ], - "153": [ - "None", - "NoneType", - {} - ], - "154": [ - "True", - "bool", - {} - ], - "155": [ - "True", - "bool", - {} - ], - "156": [ - "ValueError", - -1, - {} - ], - "160": [ - "", - -2, - {} - ], - "162": { - "0": [ - "", - -2, - {} - ] - }, - "163": [ - "True", - "bool", - {} - ], - "166": [ - "True", - "bool", - {} - ], - "168": [ - "", - "generator", - {} - ], - "169": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_11" - ] - } - ], - "170": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_13" - ] - } - ], - "213": [ - "6", - "int", - { - "inner_calls": [ - "test_id_2" - ] - } - ], - "221": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "223": { - "0": [ - "range(0, 0)", - "range", - { - "len": 0 - } - ], - "1": [ - "range(0, 2)", - "range", - { - "len": 2 - } - ], - "2": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "3": [ - "range(0, 194)", - "range", - { - "len": 194 - } - ], - "4": [ - "range(0, 196)", - "range", - { - "len": 196 - } - ], - "5": [ - "range(0, 198)", - "range", - { - "len": 198 - } - ] - }, - "224": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "225": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "229": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "231": { - "1": [ - "False", - "bool", - {} - ], - "3": [ - "True", - "bool", - {} - ] - }, - "232": { - "3": [ - "", - -2, - {} - ] - }, - "234": [ - "", - "MyClass", - {} - ], - "236": [ - "", - "MyClass", - {} - ], - "237": [ - "", - "MyClass", - {} - ], - "239": { - "0": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "1": [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - }, - "240": [ - "", - -2, - {} - ], - "242": [ - ". at 0xABC>", - "generator", - {} - ], - "243": [ - "", - "function", - {} - ], - "244": [ - "{0, 1, 2, 3}", - "set", - { - "len": 4 - }, - [ - "<0>", - [ - "0", - "int", - {} - ] - ], - [ - "<1>", - [ - "1", - "int", - {} - ] - ], - [ - "<2>", - [ - "2", - "int", - {} - ] - ], - [ - "<3>", - [ - "3", - "int", - {} - ] - ] - ], - "245": [ - "", - "function", - {} - ], - "246": [ - "{0: 0}", - "dict", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "247": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "248": [ - "", - "function", - {} - ], - "249": [ - "", - "SlotClass", - { - "inner_calls": [ - "test_id_8" - ] - }, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "250": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "inner_calls": [ - "test_id_9" - ], - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "252": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "253": [ - "[1, 2, {'k': 23}]", - "list", - { - "inner_calls": [ - "test_id_10" - ], - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ], - "256": [ - "3", - "int", - {} - ], - "261": [ - "6", - "int", - {} - ], - "265": [ - "", - "function", - {} - ], - "269": [ - "2", - "int", - {} - ], - "272": [ - "(1, 2)", - "tuple", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ], - "275": [ - "ValueError()", - "ValueError", - {} - ], - "280": [ - "", - -2, - {} - ], - "281": [ - "None", - "NoneType", - {} - ], - "282": [ - "8", - "int", - {} - ], - "286": [ - "4", - "int", - {} - ], - "290": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "291": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "292": [ - "", - "generator", - {} - ], - "293": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "294": [ - "", - "generator", - {} - ], - "314": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "317": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "321": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - }, - "322": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "323": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "325": { - "1": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "327": { - "0": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "328": { - "1": [ - "1", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "331": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__exit__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "332": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__exit__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "334": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "3", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "100", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "100", - "int", - {} - ], - "5": [ - "101", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "195", - "int", - {} - ], - "5": [ - "196", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "196", - "int", - {} - ], - "4": [ - "197", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - } - }, - "335": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "337": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "339": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "340": [ - "", - -2, - {} - ], - "342": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "343": [ - "", - -2, - {} - ], - "345": { - "0": [ - "0", - "int", - {} - ] - }, - "346": { - "0": [ - "0", - "int", - {} - ] - }, - "347": [ - "", - -2, - {} - ], - "350": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "352": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "353": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "354": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "358": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "360": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "362": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "370": [ - "'1 + 2'", - "str", - { - "len": 5 - } - ], - "385": [ - "", - "function", - {} - ], - "386": [ - ". at 0xABC>", - "function", - {} - ], - "405": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[[]]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "2": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", - "list", - { - "len": 97 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "94", - [ - "[94, 95, 96, ..., 279, 280, 281]", - "list", - { - "len": 188 - }, - [ - "0", - [ - "94", - "int", - {} - ] - ], - [ - "1", - [ - "95", - "int", - {} - ] - ], - [ - "2", - [ - "96", - "int", - {} - ] - ], - [ - "185", - [ - "279", - "int", - {} - ] - ], - [ - "186", - [ - "280", - "int", - {} - ] - ], - [ - "187", - [ - "281", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ], - [ - "195", - [ - "293", - "int", - {} - ] - ] - ] - ] - ] - }, - "411": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "412": { - "1": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ] - }, - "2": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ] - }, - "3": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "4": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "5": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - } - }, - "413": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "5", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "288", - "int", - {} - ], - "4": [ - "289", - "int", - {} - ], - "5": [ - "290", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "291", - "int", - {} - ], - "4": [ - "292", - "int", - {} - ], - "5": [ - "293", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "294", - "int", - {} - ], - "4": [ - "295", - "int", - {} - ], - "5": [ - "296", - "int", - {} - ] - } - }, - "414": { - "1": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ] - }, - "2": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "3": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "4": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "5": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - } - }, - "415": { - "1": { - "0": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 294, 295, 296]", - "list", - { - "len": 198 - } - ] - ] - ] - } - }, - "416": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "417": { - "1": [ - "11.0", - "float", - {} - ], - "3": [ - "11.0", - "float", - {} - ] - }, - "422": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "424": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "0", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "0", - "int", - {} - ], - "4": [ - "0", - "int", - {} - ], - "5": [ - "0", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "1", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ], - "4": [ - "1", - "int", - {} - ], - "5": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ], - "4": [ - "2", - "int", - {} - ], - "5": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "426": { - "0": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "1": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "2": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "3": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "4": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "5": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ] - }, - "432": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "435": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "439": [ - "range(0, 1)", - "range", - { - "len": 1 - } - ], - "44": [ - "", - -2, - {} - ], - "441": [ - "", - "type", - {}, - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__init__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__slots__", - [ - "('slot1',)", - "tuple", - { - "len": 1 - }, - [ - "0", - [ - "'slot1'", - "str", - { - "len": 5 - } - ] - ] - ] - ], - [ - "slot1", - [ - "", - "member_descriptor", - {} - ] - ] - ], - "444": [ - "range(0, 1000)", - "range", - { - "len": 1000 - } - ], - "448": [ - "range(0, 1000)", - "range", - { - "len": 1000 - } - ], - "45": [ - "", - -2, - {} - ], - "46": [ - "", - -2, - {} - ], - "47": [ - "", - -2, - {} - ], - "478": { - "1": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[1]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ] - ] - }, - "2": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[2]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ] - ], - "3": [ - "[2, 3, 4]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ] - ] - }, - "3": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[97]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ] - ], - "2": [ - "[97, 98]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "188", - [ - "285", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ] - ], - "4": [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ] - ], - "5": [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ] - ] - }, - "4": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[98]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ] - ], - "2": [ - "[98, 99]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ] - ], - "3": [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "190", - [ - "288", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ] - ], - "5": [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ] - ] - }, - "5": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[99]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ] - ], - "2": [ - "[99, 100]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ] - ], - "3": [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "192", - [ - "291", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ] - ], - "4": [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ], - [ - "196", - [ - "295", - "int", - {} - ] - ] - ] - } - }, - "48": [ - "", - -2, - {} - ], - "480": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "482": { - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "191", - "int", - {} - ], - "4": [ - "192", - "int", - {} - ], - "5": [ - "193", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "193", - "int", - {} - ], - "4": [ - "194", - "int", - {} - ], - "5": [ - "195", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - } - }, - "486": { - "0": [ - "ZeroDivisionError: division by zero", - -1, - {} - ], - "1": [ - "1.0", - "float", - {} - ], - "2": [ - "ZeroDivisionError: division by zero", - -1, - {} - ], - "3": [ - "1.0", - "float", - {} - ] - }, - "49": [ - "", - -2, - {} - ], - "50": [ - "", - -2, - {} - ], - "51": [ - "", - -2, - {} - ], - "52": [ - "", - -2, - {} - ], - "527": { - "1": { - "0": [ - "[[], []]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], []]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ] - } - }, - "53": [ - "", - -2, - { - "inner_calls": [ - "test_id_6", - "test_id_7" - ] - } - ], - "534": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ] - }, - "54": [ - "", - -2, - {} - ], - "546": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "55": [ - "", - -2, - {} - ], - "56": [ - "", - -2, - {} - ], - "57": [ - "", - -2, - {} - ], - "58": [ - "", - -2, - {} - ], - "59": [ - "", - -2, - {} - ], - "60": [ - "", - -2, - {} - ], - "61": [ - "", - -2, - {} - ], - "62": [ - "", - -2, - {} - ], - "63": [ - "", - -2, - {} - ], - "64": [ - "", - -2, - {} - ], - "65": [ - "", - -2, - {} - ], - "66": [ - "", - -2, - {} - ], - "67": [ - "", - -2, - {} - ], - "68": [ - "", - -2, - {} - ], - "69": [ - "", - -2, - {} - ], - "70": [ - "", - -2, - {} - ], - "71": [ - "", - -2, - {} - ], - "72": [ - "", - -2, - {} - ], - "73": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 65, - "start": 64, - "tree_index": 46 - }, - { - "end": 205, - "start": 204, - "tree_index": 47 - }, - { - "end": 1254, - "start": 1250, - "tree_index": 66 - }, - { - "end": 118, - "start": 117, - "tree_index": 128 - }, - { - "end": 438, - "start": 437, - "tree_index": 240 - }, - { - "end": 417, - "start": 416, - "tree_index": 335 - }, - { - "end": 471, - "start": 470, - "tree_index": 340 - }, - { - "end": 503, - "start": 502, - "tree_index": 343 - }, - { - "end": 539, - "start": 538, - "tree_index": 347 - } - ], - "node_loops": { - "127": [ - 46 - ], - "128": [ - 46 - ], - "131": [ - 47 - ], - "132": [ - 47 - ], - "162": [ - 66 - ], - "221": [ - 46 - ], - "223": [ - 46 - ], - "224": [ - 46, - 128 - ], - "225": [ - 46, - 128 - ], - "229": [ - 47 - ], - "231": [ - 47 - ], - "232": [ - 47 - ], - "239": [ - 240 - ], - "317": [ - 46 - ], - "320": [ - 46 - ], - "321": [ - 46 - ], - "322": [ - 46, - 128 - ], - "323": [ - 46, - 128 - ], - "325": [ - 47 - ], - "326": [ - 47 - ], - "327": [ - 47 - ], - "328": [ - 47 - ], - "334": [ - 240, - 335 - ], - "335": [ - 240 - ], - "339": [ - 340 - ], - "342": [ - 343 - ], - "345": [ - 347 - ], - "346": [ - 347 - ], - "405": [ - 46 - ], - "411": [ - 46 - ], - "412": [ - 46, - 128 - ], - "413": [ - 46, - 128 - ], - "414": [ - 46, - 128 - ], - "415": [ - 46, - 128 - ], - "416": [ - 47 - ], - "417": [ - 47 - ], - "422": [ - 240, - 335 - ], - "424": [ - 240, - 335 - ], - "426": [ - 240 - ], - "478": [ - 46, - 128 - ], - "480": [ - 46, - 128 - ], - "482": [ - 46, - 128 - ], - "486": [ - 47 - ], - "492": [ - 240 - ], - "527": [ - 46, - 128 - ], - "534": [ - 47 - ], - "546": [ - 47 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 40, - "start": 16, - "tree_index": 44 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 55, - "start": 46, - "tree_index": 45 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 194, - "start": 56, - "tree_index": 46 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 359, - "start": 196, - "tree_index": 47 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 390, - "start": 365, - "tree_index": 48 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 453, - "start": 395, - "tree_index": 49 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 484, - "start": 458, - "tree_index": 50 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 517, - "start": 489, - "tree_index": 51 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 553, - "start": 522, - "tree_index": 52 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 578, - "start": 554, - "tree_index": 53 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 605, - "start": 583, - "tree_index": 54 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 812, - "start": 611, - "tree_index": 55 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 880, - "start": 818, - "tree_index": 56 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 922, - "start": 886, - "tree_index": 57 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 933, - "start": 928, - "tree_index": 58 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 944, - "start": 938, - "tree_index": 59 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 962, - "start": 949, - "tree_index": 60 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 972, - "start": 967, - "tree_index": 61 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1002, - "start": 978, - "tree_index": 62 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1032, - "start": 1008, - "tree_index": 63 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1067, - "start": 1037, - "tree_index": 64 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1238, - "start": 1069, - "tree_index": 65 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 1269, - "start": 1240, - "tree_index": 66 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1307, - "start": 1275, - "tree_index": 67 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1321, - "start": 1313, - "tree_index": 68 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1331, - "start": 1326, - "tree_index": 69 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1349, - "start": 1336, - "tree_index": 70 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1364, - "start": 1355, - "tree_index": 71 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1381, - "start": 1369, - "tree_index": 72 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1398, - "start": 1386, - "tree_index": 73 - }, - { - "classes": [], - "depth": 3, - "end": 40, - "start": 23, - "tree_index": 122 - }, - { - "classes": [], - "depth": 3, - "end": 79, - "start": 69, - "tree_index": 126 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 104, - "start": 89, - "tree_index": 127 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 194, - "start": 105, - "tree_index": 128 - }, - { - "classes": [], - "depth": 3, - "end": 217, - "start": 209, - "tree_index": 130 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 322, - "start": 219, - "tree_index": 131 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 359, - "start": 323, - "tree_index": 132 - }, - { - "classes": [], - "depth": 3, - "end": 390, - "start": 369, - "tree_index": 134 - }, - { - "classes": [], - "depth": 3, - "end": 453, - "start": 404, - "tree_index": 136 - }, - { - "classes": [], - "depth": 3, - "end": 484, - "start": 458, - "tree_index": 137 - }, - { - "classes": [], - "depth": 3, - "end": 517, - "start": 489, - "tree_index": 138 - }, - { - "classes": [], - "depth": 3, - "end": 553, - "start": 522, - "tree_index": 139 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 578, - "start": 574, - "tree_index": 141 - }, - { - "classes": [], - "depth": 3, - "end": 605, - "start": 583, - "tree_index": 142 - }, - { - "classes": [], - "depth": 3, - "end": 812, - "start": 618, - "tree_index": 143 - }, - { - "classes": [], - "depth": 3, - "end": 880, - "start": 825, - "tree_index": 144 - }, - { - "classes": [], - "depth": 3, - "end": 922, - "start": 893, - "tree_index": 145 - }, - { - "classes": [], - "depth": 3, - "end": 962, - "start": 956, - "tree_index": 151 - }, - { - "classes": [], - "depth": 3, - "end": 1002, - "start": 978, - "tree_index": 153 - }, - { - "classes": [], - "depth": 3, - "end": 1032, - "start": 1015, - "tree_index": 154 - }, - { - "classes": [], - "depth": 3, - "end": 1067, - "start": 1044, - "tree_index": 155 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1104, - "start": 1086, - "tree_index": 156 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1238, - "start": 1231, - "tree_index": 160 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1269, - "start": 1264, - "tree_index": 162 - }, - { - "classes": [], - "depth": 3, - "end": 1307, - "start": 1282, - "tree_index": 163 - }, - { - "classes": [], - "depth": 3, - "end": 1349, - "start": 1343, - "tree_index": 166 - }, - { - "classes": [], - "depth": 3, - "end": 1364, - "start": 1359, - "tree_index": 168 - }, - { - "classes": [], - "depth": 3, - "end": 1381, - "start": 1369, - "tree_index": 169 - }, - { - "classes": [], - "depth": 3, - "end": 1398, - "start": 1386, - "tree_index": 170 - }, - { - "classes": [], - "depth": 4, - "end": 35, - "start": 23, - "tree_index": 213 - }, - { - "classes": [], - "depth": 4, - "end": 74, - "start": 69, - "tree_index": 219 - }, - { - "classes": [], - "depth": 4, - "end": 104, - "start": 89, - "tree_index": 221 - }, - { - "classes": [], - "depth": 4, - "end": 134, - "start": 122, - "tree_index": 223 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 170, - "start": 148, - "tree_index": 224 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 194, - "start": 183, - "tree_index": 225 - }, - { - "classes": [], - "depth": 4, - "end": 214, - "start": 209, - "tree_index": 227 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 267, - "start": 244, - "tree_index": 229 - }, - { - "classes": [], - "depth": 4, - "end": 340, - "start": 334, - "tree_index": 231 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 359, - "start": 354, - "tree_index": 232 - }, - { - "classes": [], - "depth": 4, - "end": 378, - "start": 369, - "tree_index": 234 - }, - { - "classes": [], - "depth": 4, - "end": 390, - "start": 381, - "tree_index": 236 - }, - { - "classes": [], - "depth": 4, - "end": 396, - "start": 395, - "tree_index": 237 - }, - { - "classes": [], - "depth": 4, - "end": 432, - "start": 405, - "tree_index": 239 - }, - { - "classes": [ - "loop" - ], - "depth": 4, - "end": 452, - "start": 433, - "tree_index": 240 - }, - { - "classes": [], - "depth": 4, - "end": 461, - "start": 458, - "tree_index": 241 - }, - { - "classes": [], - "depth": 4, - "end": 483, - "start": 464, - "tree_index": 242 - }, - { - "classes": [], - "depth": 4, - "end": 494, - "start": 489, - "tree_index": 243 - }, - { - "classes": [], - "depth": 4, - "end": 516, - "start": 495, - "tree_index": 244 - }, - { - "classes": [], - "depth": 4, - "end": 527, - "start": 522, - "tree_index": 245 - }, - { - "classes": [], - "depth": 4, - "end": 552, - "start": 528, - "tree_index": 246 - }, - { - "classes": [], - "depth": 4, - "end": 564, - "start": 563, - "tree_index": 247 - }, - { - "classes": [], - "depth": 4, - "end": 588, - "start": 583, - "tree_index": 248 - }, - { - "classes": [], - "depth": 4, - "end": 604, - "start": 589, - "tree_index": 249 - }, - { - "classes": [], - "depth": 4, - "end": 729, - "start": 618, - "tree_index": 250 - }, - { - "classes": [], - "depth": 4, - "end": 812, - "start": 733, - "tree_index": 252 - }, - { - "classes": [], - "depth": 4, - "end": 859, - "start": 825, - "tree_index": 253 - }, - { - "classes": [], - "depth": 4, - "end": 917, - "start": 893, - "tree_index": 256 - }, - { - "classes": [], - "depth": 4, - "end": 957, - "start": 956, - "tree_index": 261 - }, - { - "classes": [], - "depth": 4, - "end": 983, - "start": 978, - "tree_index": 265 - }, - { - "classes": [], - "depth": 4, - "end": 1027, - "start": 1015, - "tree_index": 269 - }, - { - "classes": [], - "depth": 4, - "end": 1057, - "start": 1044, - "tree_index": 272 - }, - { - "classes": [], - "depth": 4, - "end": 1104, - "start": 1092, - "tree_index": 275 - }, - { - "classes": [], - "depth": 4, - "end": 1130, - "start": 1116, - "tree_index": 276 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1149, - "start": 1145, - "tree_index": 277 - }, - { - "classes": [], - "depth": 4, - "end": 1170, - "start": 1161, - "tree_index": 278 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1184, - "start": 1180, - "tree_index": 279 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1209, - "start": 1205, - "tree_index": 280 - }, - { - "classes": [], - "depth": 4, - "end": 1238, - "start": 1231, - "tree_index": 281 - }, - { - "classes": [], - "depth": 4, - "end": 1302, - "start": 1282, - "tree_index": 282 - }, - { - "classes": [], - "depth": 4, - "end": 1344, - "start": 1343, - "tree_index": 286 - }, - { - "classes": [], - "depth": 4, - "end": 1362, - "start": 1359, - "tree_index": 290 - }, - { - "classes": [], - "depth": 4, - "end": 1378, - "start": 1369, - "tree_index": 291 - }, - { - "classes": [], - "depth": 4, - "end": 1380, - "start": 1379, - "tree_index": 292 - }, - { - "classes": [], - "depth": 4, - "end": 1395, - "start": 1386, - "tree_index": 293 - }, - { - "classes": [], - "depth": 4, - "end": 1397, - "start": 1396, - "tree_index": 294 - }, - { - "classes": [], - "depth": 5, - "end": 32, - "start": 23, - "tree_index": 314 - }, - { - "classes": [], - "depth": 5, - "end": 100, - "start": 89, - "tree_index": 317 - }, - { - "classes": [], - "depth": 5, - "end": 127, - "start": 122, - "tree_index": 320 - }, - { - "classes": [], - "depth": 5, - "end": 133, - "start": 128, - "tree_index": 321 - }, - { - "classes": [], - "depth": 5, - "end": 170, - "start": 148, - "tree_index": 322 - }, - { - "classes": [], - "depth": 5, - "end": 194, - "start": 183, - "tree_index": 323 - }, - { - "classes": [], - "depth": 5, - "end": 267, - "start": 244, - "tree_index": 325 - }, - { - "classes": [], - "depth": 5, - "end": 300, - "start": 283, - "tree_index": 326 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 322, - "start": 314, - "tree_index": 327 - }, - { - "classes": [], - "depth": 5, - "end": 335, - "start": 334, - "tree_index": 328 - }, - { - "classes": [], - "depth": 5, - "end": 376, - "start": 369, - "tree_index": 331 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 381, - "tree_index": 332 - }, - { - "classes": [], - "depth": 5, - "end": 411, - "start": 406, - "tree_index": 334 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 431, - "start": 412, - "tree_index": 335 - }, - { - "classes": [], - "depth": 5, - "end": 452, - "start": 442, - "tree_index": 337 - }, - { - "classes": [], - "depth": 5, - "end": 465, - "start": 464, - "tree_index": 339 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 483, - "start": 466, - "tree_index": 340 - }, - { - "classes": [], - "depth": 5, - "end": 497, - "start": 496, - "tree_index": 342 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 515, - "start": 498, - "tree_index": 343 - }, - { - "classes": [], - "depth": 5, - "end": 530, - "start": 529, - "tree_index": 345 - }, - { - "classes": [], - "depth": 5, - "end": 533, - "start": 532, - "tree_index": 346 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 551, - "start": 534, - "tree_index": 347 - }, - { - "classes": [], - "depth": 5, - "end": 590, - "start": 589, - "tree_index": 350 - }, - { - "classes": [], - "depth": 5, - "end": 604, - "start": 593, - "tree_index": 352 - }, - { - "classes": [], - "depth": 5, - "end": 630, - "start": 618, - "tree_index": 353 - }, - { - "classes": [], - "depth": 5, - "end": 657, - "start": 640, - "tree_index": 354 - }, - { - "classes": [], - "depth": 5, - "end": 751, - "start": 734, - "tree_index": 358 - }, - { - "classes": [], - "depth": 5, - "end": 811, - "start": 782, - "tree_index": 360 - }, - { - "classes": [], - "depth": 5, - "end": 837, - "start": 825, - "tree_index": 362 - }, - { - "classes": [], - "depth": 5, - "end": 845, - "start": 838, - "tree_index": 363 - }, - { - "classes": [], - "depth": 5, - "end": 897, - "start": 893, - "tree_index": 369 - }, - { - "classes": [], - "depth": 5, - "end": 916, - "start": 898, - "tree_index": 370 - }, - { - "classes": [], - "depth": 5, - "end": 1102, - "start": 1092, - "tree_index": 382 - }, - { - "classes": [], - "depth": 5, - "end": 1236, - "start": 1231, - "tree_index": 385 - }, - { - "classes": [], - "depth": 5, - "end": 1298, - "start": 1283, - "tree_index": 386 - }, - { - "classes": [], - "depth": 6, - "end": 93, - "start": 89, - "tree_index": 405 - }, - { - "classes": [], - "depth": 6, - "end": 133, - "start": 132, - "tree_index": 411 - }, - { - "classes": [], - "depth": 6, - "end": 163, - "start": 148, - "tree_index": 412 - }, - { - "classes": [], - "depth": 6, - "end": 169, - "start": 164, - "tree_index": 413 - }, - { - "classes": [], - "depth": 6, - "end": 188, - "start": 183, - "tree_index": 414 - }, - { - "classes": [], - "depth": 6, - "end": 193, - "start": 189, - "tree_index": 415 - }, - { - "classes": [], - "depth": 6, - "end": 249, - "start": 244, - "tree_index": 416 - }, - { - "classes": [], - "depth": 6, - "end": 266, - "start": 250, - "tree_index": 417 - }, - { - "classes": [], - "depth": 6, - "end": 407, - "start": 406, - "tree_index": 422 - }, - { - "classes": [], - "depth": 6, - "end": 411, - "start": 410, - "tree_index": 424 - }, - { - "classes": [], - "depth": 6, - "end": 431, - "start": 421, - "tree_index": 426 - }, - { - "classes": [], - "depth": 6, - "end": 447, - "start": 442, - "tree_index": 428 - }, - { - "classes": [], - "depth": 6, - "end": 483, - "start": 475, - "tree_index": 432 - }, - { - "classes": [], - "depth": 6, - "end": 515, - "start": 507, - "tree_index": 435 - }, - { - "classes": [], - "depth": 6, - "end": 551, - "start": 543, - "tree_index": 439 - }, - { - "classes": [], - "depth": 6, - "end": 602, - "start": 593, - "tree_index": 441 - }, - { - "classes": [], - "depth": 6, - "end": 644, - "start": 640, - "tree_index": 443 - }, - { - "classes": [], - "depth": 6, - "end": 656, - "start": 645, - "tree_index": 444 - }, - { - "classes": [], - "depth": 6, - "end": 738, - "start": 734, - "tree_index": 447 - }, - { - "classes": [], - "depth": 6, - "end": 750, - "start": 739, - "tree_index": 448 - }, - { - "classes": [], - "depth": 6, - "end": 786, - "start": 782, - "tree_index": 449 - }, - { - "classes": [], - "depth": 6, - "end": 1298, - "start": 1293, - "tree_index": 474 - }, - { - "classes": [], - "depth": 7, - "end": 156, - "start": 148, - "tree_index": 478 - }, - { - "classes": [], - "depth": 7, - "end": 165, - "start": 164, - "tree_index": 480 - }, - { - "classes": [], - "depth": 7, - "end": 169, - "start": 168, - "tree_index": 482 - }, - { - "classes": [], - "depth": 7, - "end": 261, - "start": 250, - "tree_index": 486 - }, - { - "classes": [], - "depth": 7, - "end": 426, - "start": 421, - "tree_index": 492 - }, - { - "classes": [], - "depth": 7, - "end": 480, - "start": 475, - "tree_index": 496 - }, - { - "classes": [], - "depth": 7, - "end": 512, - "start": 507, - "tree_index": 499 - }, - { - "classes": [], - "depth": 7, - "end": 548, - "start": 543, - "tree_index": 502 - }, - { - "classes": [], - "depth": 7, - "end": 650, - "start": 645, - "tree_index": 506 - }, - { - "classes": [], - "depth": 7, - "end": 744, - "start": 739, - "tree_index": 511 - }, - { - "classes": [], - "depth": 7, - "end": 1294, - "start": 1293, - "tree_index": 524 - }, - { - "classes": [], - "depth": 8, - "end": 152, - "start": 148, - "tree_index": 527 - }, - { - "classes": [], - "depth": 8, - "end": 260, - "start": 255, - "tree_index": 534 - }, - { - "classes": [], - "depth": 9, - "end": 256, - "start": 255, - "tree_index": 546 - } - ] - }, - "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n sum (n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", - "lineno": 63, - "name": "main" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "3" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "3", - "int", - {} - ], - "177": [ - "3", - "int", - {} - ], - "179": [ - "2", - "int", - { - "inner_calls": [ - "test_id_3" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "299": [ - "2", - "int", - {} - ], - "395": [ - "3", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "6", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "6", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "2" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "2", - "int", - {} - ], - "177": [ - "2", - "int", - {} - ], - "179": [ - "1", - "int", - { - "inner_calls": [ - "test_id_4" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "299": [ - "1", - "int", - {} - ], - "395": [ - "2", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "2", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "2", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "1" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "1", - "int", - {} - ], - "19": [ - "", - -2, - {} - ], - "78": [ - "True", - "bool", - {} - ], - "79": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "1", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ], - "204": [ - "", - "MyClass", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "getset_descriptor", - "int", - "list", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 204 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "117": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 117 - } - ] - }, - "html_body": " @eye\n def __enter__(self):\n pass", - "lineno": 54, - "name": "MyClass.__enter__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "exc_type", - "None" - ], - [ - "exc_val", - "None" - ], - [ - "exc_tb", - "None" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "120": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 59, - "start": 55, - "tree_index": 120 - } - ] - }, - "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", - "lineno": 58, - "name": "MyClass.__exit__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ], - "204": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 204 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "[0, 1, 2, ..., 997, 998, 999]" - ], - [ - "pos2", - "'hello'" - ], - [ - "key1", - "3" - ], - [ - "key2", - "8" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'kwarg1': {'key': 'value'}}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "186": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "187": [ - "'hello'", - "str", - { - "len": 5 - } - ], - "188": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "96": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 96 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 187 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 188 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "1" - ], - [ - "pos2", - "2" - ], - [ - "key1", - "3" - ], - [ - "key2", - "4" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'k': 23}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "186": [ - "1", - "int", - {} - ], - "187": [ - "2", - "int", - {} - ], - "188": [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "96": [ - "[1, 2, {'k': 23}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 96 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 187 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 188 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[1, 2, {'k': 23}]", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "34": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "104": [ - "", - "islice", - {} - ], - "105": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "195": [ - "", - "type", - {}, - [ - "__doc__", - [ - "'islice(iterab...s an iterator.'", - "str", - { - "len": 454 - } - ] - ], - [ - "__getattribute__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__iter__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__new__", - [ - "", - "builtin_function_or_method", - {} - ] - ], - [ - "__next__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__reduce__", - [ - "", - "method_descriptor", - {} - ] - ], - [ - "__setstate__", - [ - "", - "method_descriptor", - {} - ] - ] - ], - "196": [ - "", - "generator", - {} - ], - "198": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "309": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "310": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "34": [ - "", - -2, - { - "inner_calls": [ - "test_id_12" - ] - } - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 34 - } - ], - "node_loops": { - "105": [ - 34 - ], - "198": [ - 34 - ], - "309": [ - 34 - ], - "310": [ - 34 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 61, - "start": 18, - "tree_index": 34 - }, - { - "classes": [], - "depth": 3, - "end": 43, - "start": 31, - "tree_index": 104 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 61, - "start": 53, - "tree_index": 105 - }, - { - "classes": [], - "depth": 4, - "end": 37, - "start": 31, - "tree_index": 195 - }, - { - "classes": [], - "depth": 4, - "end": 39, - "start": 38, - "tree_index": 196 - }, - { - "classes": [], - "depth": 4, - "end": 61, - "start": 53, - "tree_index": 198 - }, - { - "classes": [], - "depth": 5, - "end": 58, - "start": 53, - "tree_index": 309 - }, - { - "classes": [], - "depth": 5, - "end": 60, - "start": 59, - "tree_index": 310 - } - ] - }, - "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", - "lineno": 37, - "name": "use_gen_1" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "31": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - }, - { - "index": 4, - "loops": {} - }, - { - "index": 5, - "loops": {} - } - ] - }, - "node_values": { - "100": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "193": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "306": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ], - "4": [ - "4", - "int", - {} - ], - "5": [ - "5", - "int", - {} - ] - }, - "31": [ - "", - -2, - {} - ], - "99": [ - "range(0, 6)", - "range", - { - "len": 6 - } - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 20, - "start": 19, - "tree_index": 31 - } - ], - "node_loops": { - "100": [ - 31 - ], - "193": [ - 31 - ], - "306": [ - 31 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 49, - "start": 11, - "tree_index": 31 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 24, - "tree_index": 99 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 42, - "tree_index": 100 - }, - { - "classes": [], - "depth": 4, - "end": 29, - "start": 24, - "tree_index": 191 - }, - { - "classes": [], - "depth": 4, - "end": 49, - "start": 42, - "tree_index": 193 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 306 - } - ] - }, - "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", - "lineno": 31, - "name": "gen" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "37": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "109": [ - "", - "generator", - {} - ], - "110": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "201": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "311": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "312": { - "0": [ - "3", - "int", - {} - ], - "1": [ - "4", - "int", - {} - ], - "2": [ - "5", - "int", - {} - ] - }, - "37": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 37 - } - ], - "node_loops": { - "110": [ - 37 - ], - "201": [ - 37 - ], - "311": [ - 37 - ], - "312": [ - 37 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 50, - "start": 18, - "tree_index": 37 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 31, - "tree_index": 109 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 50, - "start": 42, - "tree_index": 110 - }, - { - "classes": [], - "depth": 4, - "end": 50, - "start": 42, - "tree_index": 201 - }, - { - "classes": [], - "depth": 5, - "end": 47, - "start": 42, - "tree_index": 311 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 312 - } - ] - }, - "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", - "lineno": 43, - "name": "use_gen_2" - }, - "return_value": "None", - "traceback": null - } -] \ No newline at end of file diff --git a/tests/golden-files/3.6/traced.json b/tests/golden-files/3.6/traced.json deleted file mode 100644 index 21906f6..0000000 --- a/tests/golden-files/3.6/traced.json +++ /dev/null @@ -1,1968 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": {}, - "node_values": { - "1": [ - "", - -2, - {} - ], - "13": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_15" - ] - } - ], - "2": [ - "", - -2, - {} - ], - "27": [ - "", - "function", - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "node_loops": { - "103": [ - 104 - ], - "105": [ - 82 - ], - "117": [ - 100, - 118 - ], - "118": [ - 100 - ], - "121": [ - 104 - ], - "123": [ - 104 - ], - "127": [ - 82 - ], - "136": [ - 100, - 118 - ], - "140": [ - 100 - ], - "150": [ - 82 - ], - "152": [ - 82 - ], - "157": [ - 100 - ], - "158": [ - 100 - ], - "34": [ - 19 - ], - "53": [ - 19 - ], - "72": [ - 19 - ], - "73": [ - 19 - ], - "81": [ - 82 - ], - "95": [ - 19 - ], - "97": [ - 19 - ], - "99": [ - 100 - ] - } - }, - "html_body": "import birdseye.trace_module_deep\n\n\ndef deco(f):\n return f\n\n\ndef m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()\n\n\nm()", - "lineno": 1, - "name": "$$__FILE__$$" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "100": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "118": [ - { - "index": 0, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "118": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - } - ], - "19": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ], - "82": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "10": [ - "", - -2, - {} - ], - "100": [ - "", - -2, - {} - ], - "105": { - "0": [ - ".A.. at 0xABC>", - "function", - {} - ], - "1": [ - ".A.. at 0xABC>", - "function", - {} - ], - "2": [ - ".A.. at 0xABC>", - "function", - {} - ] - }, - "108": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "11": [ - "", - -2, - {} - ], - "113": [ - ".A object at 0xABC>", - "m..A", - {} - ], - "117": { - "1": { - "0": [ - "0", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - } - }, - "118": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "12": [ - "", - -2, - {} - ], - "120": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "135": [ - ".A'>", - "type", - {}, - [ - "B", - [ - ".A.B'>", - "type", - {}, - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.traced'", - "str", - { - "len": 19 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.traced'", - "str", - { - "len": 19 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "bar", - [ - ".A.bar at 0xABC>", - "function", - {} - ] - ], - [ - "foo", - [ - ".A.foo at 0xABC>", - "function", - {} - ] - ], - [ - "i", - [ - "2", - "int", - {} - ] - ] - ], - "136": { - "1": { - "0": [ - "0", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - } - }, - "140": { - "0": [ - "range(0, 0)", - "range", - { - "len": 0 - } - ], - "1": [ - "range(0, 1)", - "range", - { - "len": 1 - } - ], - "2": [ - "range(0, 2)", - "range", - { - "len": 2 - } - ] - }, - "158": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "18": [ - "'9'", - "str", - { - "len": 1 - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "21": [ - "", - -2, - {} - ], - "22": [ - "", - -2, - {} - ], - "23": [ - "", - -2, - {} - ], - "24": [ - "", - -2, - { - "inner_calls": [ - "test_id_16" - ] - } - ], - "25": [ - "", - -2, - {} - ], - "26": [ - "4", - "int", - { - "inner_calls": [ - "test_id_18" - ] - } - ], - "31": [ - "9", - "int", - {} - ], - "33": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "34": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "35": [ - "", - -2, - {} - ], - "36": [ - "9", - "int", - {} - ], - "37": [ - "[0, 8, 16]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "8", - "int", - {} - ] - ], - [ - "2", - [ - "16", - "int", - {} - ] - ] - ], - "38": [ - "'{8, 9, 7}'", - "str", - { - "len": 9 - } - ], - "43": [ - "", - "function", - {} - ], - "46": [ - ".A.bar of .A object at 0xABC>>", - "method", - {} - ], - "53": { - "0": [ - "'0'", - "str", - { - "len": 1 - } - ], - "1": [ - "'1'", - "str", - { - "len": 1 - } - ], - "2": [ - "'4'", - "str", - { - "len": 1 - } - ] - }, - "54": [ - "'[[], [0], [0, 2]]'", - "str", - { - "len": 17 - } - ], - "55": [ - ".A. at 0xABC>", - "function", - {} - ], - "57": [ - ".A. at 0xABC>", - "function", - {} - ], - "60": [ - "{8, 9, 7}", - "set", - { - "len": 3 - }, - [ - "<0>", - [ - "8", - "int", - {} - ] - ], - [ - "<1>", - [ - "9", - "int", - {} - ] - ], - [ - "<2>", - [ - "7", - "int", - {} - ] - ] - ], - "69": [ - ".A object at 0xABC>", - "m..A", - { - "inner_calls": [ - "test_id_17" - ] - } - ], - "73": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ] - }, - "75": [ - "[[], [0], [0, 2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[0, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "81": { - "0": [ - "7", - "int", - {} - ], - "1": [ - "8", - "int", - {} - ], - "2": [ - "9", - "int", - {} - ] - }, - "82": [ - "", - -2, - {} - ], - "9": [ - "", - -2, - {} - ], - "93": [ - ".A.foo of .A object at 0xABC>>", - "method", - {} - ], - "95": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "97": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "99": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "2": [ - "[0, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - } - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 61, - "start": 60, - "tree_index": 19 - }, - { - "end": 314, - "start": 313, - "tree_index": 82 - }, - { - "end": 181, - "start": 180, - "tree_index": 100 - }, - { - "end": 257, - "start": 256, - "tree_index": 104 - }, - { - "end": 145, - "start": 144, - "tree_index": 118 - } - ], - "node_loops": { - "103": [ - 104 - ], - "105": [ - 82 - ], - "117": [ - 100, - 118 - ], - "118": [ - 100 - ], - "121": [ - 104 - ], - "123": [ - 104 - ], - "127": [ - 82 - ], - "136": [ - 100, - 118 - ], - "140": [ - 100 - ], - "150": [ - 82 - ], - "152": [ - 82 - ], - "157": [ - 100 - ], - "158": [ - 100 - ], - "34": [ - 19 - ], - "53": [ - 19 - ], - "72": [ - 19 - ], - "73": [ - 19 - ], - "81": [ - 82 - ], - "95": [ - 19 - ], - "97": [ - 19 - ], - "99": [ - 100 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 1, - "end": 509, - "start": 0, - "tree_index": 3 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 20, - "start": 13, - "tree_index": 9 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 33, - "start": 25, - "tree_index": 10 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 488, - "start": 35, - "tree_index": 11 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 509, - "start": 494, - "tree_index": 12 - }, - { - "classes": [], - "depth": 3, - "end": 33, - "start": 25, - "tree_index": 18 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 97, - "start": 48, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 195, - "start": 99, - "tree_index": 20 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 225, - "start": 205, - "tree_index": 21 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 274, - "start": 234, - "tree_index": 22 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 328, - "start": 283, - "tree_index": 23 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 439, - "start": 330, - "tree_index": 24 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 488, - "start": 441, - "tree_index": 25 - }, - { - "classes": [], - "depth": 3, - "end": 509, - "start": 494, - "tree_index": 26 - }, - { - "classes": [], - "depth": 4, - "end": 28, - "start": 25, - "tree_index": 30 - }, - { - "classes": [], - "depth": 4, - "end": 32, - "start": 29, - "tree_index": 31 - }, - { - "classes": [], - "depth": 4, - "end": 73, - "start": 65, - "tree_index": 33 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 97, - "start": 87, - "tree_index": 34 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 195, - "start": 128, - "tree_index": 35 - }, - { - "classes": [], - "depth": 4, - "end": 225, - "start": 205, - "tree_index": 36 - }, - { - "classes": [], - "depth": 4, - "end": 274, - "start": 234, - "tree_index": 37 - }, - { - "classes": [], - "depth": 4, - "end": 328, - "start": 283, - "tree_index": 38 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 388, - "start": 379, - "tree_index": 40 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 415, - "start": 401, - "tree_index": 41 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 439, - "start": 428, - "tree_index": 42 - }, - { - "classes": [], - "depth": 4, - "end": 343, - "start": 339, - "tree_index": 43 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 488, - "start": 476, - "tree_index": 45 - }, - { - "classes": [], - "depth": 4, - "end": 507, - "start": 494, - "tree_index": 46 - }, - { - "classes": [], - "depth": 5, - "end": 70, - "start": 65, - "tree_index": 51 - }, - { - "classes": [], - "depth": 5, - "end": 97, - "start": 87, - "tree_index": 53 - }, - { - "classes": [], - "depth": 5, - "end": 195, - "start": 128, - "tree_index": 54 - }, - { - "classes": [], - "depth": 5, - "end": 218, - "start": 206, - "tree_index": 55 - }, - { - "classes": [], - "depth": 5, - "end": 270, - "start": 235, - "tree_index": 57 - }, - { - "classes": [], - "depth": 5, - "end": 286, - "start": 283, - "tree_index": 59 - }, - { - "classes": [], - "depth": 5, - "end": 327, - "start": 287, - "tree_index": 60 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 383, - "tree_index": 63 - }, - { - "classes": [], - "depth": 5, - "end": 415, - "start": 401, - "tree_index": 64 - }, - { - "classes": [], - "depth": 5, - "end": 439, - "start": 435, - "tree_index": 65 - }, - { - "classes": [], - "depth": 5, - "end": 488, - "start": 483, - "tree_index": 68 - }, - { - "classes": [], - "depth": 5, - "end": 503, - "start": 494, - "tree_index": 69 - }, - { - "classes": [], - "depth": 6, - "end": 90, - "start": 87, - "tree_index": 72 - }, - { - "classes": [], - "depth": 6, - "end": 96, - "start": 91, - "tree_index": 73 - }, - { - "classes": [], - "depth": 6, - "end": 131, - "start": 128, - "tree_index": 74 - }, - { - "classes": [], - "depth": 6, - "end": 194, - "start": 132, - "tree_index": 75 - }, - { - "classes": [], - "depth": 6, - "end": 270, - "start": 245, - "tree_index": 79 - }, - { - "classes": [], - "depth": 6, - "end": 308, - "start": 288, - "tree_index": 81 - }, - { - "classes": [ - "loop" - ], - "depth": 6, - "end": 326, - "start": 309, - "tree_index": 82 - }, - { - "classes": [], - "depth": 6, - "end": 404, - "start": 401, - "tree_index": 87 - }, - { - "classes": [], - "depth": 6, - "end": 414, - "start": 405, - "tree_index": 88 - }, - { - "classes": [], - "depth": 6, - "end": 501, - "start": 494, - "tree_index": 93 - }, - { - "classes": [], - "depth": 7, - "end": 92, - "start": 91, - "tree_index": 95 - }, - { - "classes": [], - "depth": 7, - "end": 96, - "start": 95, - "tree_index": 97 - }, - { - "classes": [], - "depth": 7, - "end": 158, - "start": 133, - "tree_index": 99 - }, - { - "classes": [ - "loop" - ], - "depth": 7, - "end": 193, - "start": 176, - "tree_index": 100 - }, - { - "classes": [], - "depth": 7, - "end": 251, - "start": 246, - "tree_index": 103 - }, - { - "classes": [ - "loop" - ], - "depth": 7, - "end": 269, - "start": 252, - "tree_index": 104 - }, - { - "classes": [], - "depth": 7, - "end": 304, - "start": 289, - "tree_index": 105 - }, - { - "classes": [], - "depth": 7, - "end": 326, - "start": 318, - "tree_index": 108 - }, - { - "classes": [], - "depth": 7, - "end": 410, - "start": 405, - "tree_index": 110 - }, - { - "classes": [], - "depth": 7, - "end": 414, - "start": 413, - "tree_index": 112 - }, - { - "classes": [], - "depth": 7, - "end": 497, - "start": 494, - "tree_index": 113 - }, - { - "classes": [], - "depth": 8, - "end": 139, - "start": 134, - "tree_index": 117 - }, - { - "classes": [ - "loop" - ], - "depth": 8, - "end": 157, - "start": 140, - "tree_index": 118 - }, - { - "classes": [], - "depth": 8, - "end": 193, - "start": 185, - "tree_index": 120 - }, - { - "classes": [], - "depth": 8, - "end": 247, - "start": 246, - "tree_index": 121 - }, - { - "classes": [], - "depth": 8, - "end": 251, - "start": 250, - "tree_index": 123 - }, - { - "classes": [], - "depth": 8, - "end": 269, - "start": 261, - "tree_index": 125 - }, - { - "classes": [], - "depth": 8, - "end": 304, - "start": 299, - "tree_index": 127 - }, - { - "classes": [], - "depth": 8, - "end": 323, - "start": 318, - "tree_index": 129 - }, - { - "classes": [], - "depth": 8, - "end": 495, - "start": 494, - "tree_index": 135 - }, - { - "classes": [], - "depth": 9, - "end": 135, - "start": 134, - "tree_index": 136 - }, - { - "classes": [], - "depth": 9, - "end": 157, - "start": 149, - "tree_index": 140 - }, - { - "classes": [], - "depth": 9, - "end": 190, - "start": 185, - "tree_index": 142 - }, - { - "classes": [], - "depth": 9, - "end": 266, - "start": 261, - "tree_index": 147 - }, - { - "classes": [], - "depth": 9, - "end": 300, - "start": 299, - "tree_index": 150 - }, - { - "classes": [], - "depth": 9, - "end": 304, - "start": 303, - "tree_index": 152 - }, - { - "classes": [], - "depth": 10, - "end": 154, - "start": 149, - "tree_index": 157 - }, - { - "classes": [], - "depth": 10, - "end": 156, - "start": 155, - "tree_index": 158 - } - ] - }, - "html_body": "def m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()", - "lineno": 8, - "name": "m" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "f", - ".A.foo at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "15": [ - ".A.foo at 0xABC>", - "function", - {} - ], - "7": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 1, - "end": 25, - "start": 0, - "tree_index": 2 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 25, - "start": 17, - "tree_index": 7 - }, - { - "classes": [], - "depth": 3, - "end": 25, - "start": 24, - "tree_index": 15 - } - ] - }, - "html_body": "def deco(f):\n return f", - "lineno": 4, - "name": "deco" - }, - "return_value": ".A.foo at 0xABC>", - "traceback": null - }, - { - "arguments": [ - [ - "self", - ".A object at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "110": [ - "3", - "int", - {} - ], - "112": [ - "0", - "int", - {} - ], - "40": [ - "", - -2, - {} - ], - "41": [ - "", - -2, - {} - ], - "42": [ - "", - -2, - {} - ], - "63": [ - "0", - "int", - {} - ], - "64": [ - "'3'", - "str", - { - "len": 1 - } - ], - "65": [ - ".A object at 0xABC>", - "m..A", - {} - ], - "88": [ - "3", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 36, - "start": 27, - "tree_index": 40 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 63, - "start": 49, - "tree_index": 41 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 87, - "start": 76, - "tree_index": 42 - }, - { - "classes": [], - "depth": 5, - "end": 36, - "start": 31, - "tree_index": 63 - }, - { - "classes": [], - "depth": 5, - "end": 63, - "start": 49, - "tree_index": 64 - }, - { - "classes": [], - "depth": 5, - "end": 87, - "start": 83, - "tree_index": 65 - }, - { - "classes": [], - "depth": 6, - "end": 52, - "start": 49, - "tree_index": 87 - }, - { - "classes": [], - "depth": 6, - "end": 62, - "start": 53, - "tree_index": 88 - }, - { - "classes": [], - "depth": 7, - "end": 58, - "start": 53, - "tree_index": 110 - }, - { - "classes": [], - "depth": 7, - "end": 62, - "start": 61, - "tree_index": 112 - } - ] - }, - "html_body": " @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self", - "lineno": 24, - "name": "foo" - }, - "return_value": ".A object at 0xABC>", - "traceback": null - }, - { - "arguments": [ - [ - "self", - ".A object at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "45": [ - "", - -2, - {} - ], - "68": [ - "4", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 39, - "start": 27, - "tree_index": 45 - }, - { - "classes": [], - "depth": 5, - "end": 39, - "start": 34, - "tree_index": 68 - } - ] - }, - "html_body": " def bar(self):\n return 1 + 3", - "lineno": 30, - "name": "bar" - }, - "return_value": "4", - "traceback": null - } -] \ No newline at end of file diff --git a/tests/golden-files/3.7/gold.json b/tests/golden-files/3.7/gold.json deleted file mode 100644 index ae66b8d..0000000 --- a/tests/golden-files/3.7/gold.json +++ /dev/null @@ -1,13880 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": { - "240": [ - { - "index": 0, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 1, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - } - ], - "340": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "347": [ - { - "index": 0, - "loops": {} - } - ], - "46": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 191, - "loops": {} - }, - { - "index": 192, - "loops": {} - }, - { - "index": 193, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 193, - "loops": {} - }, - { - "index": 194, - "loops": {} - }, - { - "index": 195, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 195, - "loops": {} - }, - { - "index": 196, - "loops": {} - }, - { - "index": 197, - "loops": {} - } - ] - } - } - ], - "47": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "66": [ - { - "index": 0, - "loops": {} - } - ] - }, - "node_values": { - "122": [ - "True", - "bool", - {} - ], - "126": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "127": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "128": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "130": [ - "range(0, 6)", - "range", - { - "len": 6 - } - ], - "131": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "132": { - "1": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "134": [ - "", - "MyClass", - { - "inner_calls": [ - "test_id_5" - ] - } - ], - "136": [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "3", - [ - "[3, 4, 5, ..., 100, 101, 102]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "3", - "int", - {} - ] - ], - [ - "1", - [ - "4", - "int", - {} - ] - ], - [ - "2", - [ - "5", - "int", - {} - ] - ], - [ - "97", - [ - "100", - "int", - {} - ] - ], - [ - "98", - [ - "101", - "int", - {} - ] - ], - [ - "99", - [ - "102", - "int", - {} - ] - ] - ] - ], - [ - "4", - [ - "[4, 5, 6, ..., 101, 102, 103]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "4", - "int", - {} - ] - ], - [ - "1", - [ - "5", - "int", - {} - ] - ], - [ - "2", - [ - "6", - "int", - {} - ] - ], - [ - "97", - [ - "101", - "int", - {} - ] - ], - [ - "98", - [ - "102", - "int", - {} - ] - ], - [ - "99", - [ - "103", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 192, 193, 194]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "97", - [ - "192", - "int", - {} - ] - ], - [ - "98", - [ - "193", - "int", - {} - ] - ], - [ - "99", - [ - "194", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 193, 194, 195]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "97", - [ - "193", - "int", - {} - ] - ], - [ - "98", - [ - "194", - "int", - {} - ] - ], - [ - "99", - [ - "195", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ], - "137": [ - "6", - "int", - {} - ], - "138": [ - "None", - "NoneType", - {} - ], - "139": [ - "None", - "NoneType", - {} - ], - "141": [ - "", - -2, - {} - ], - "142": [ - "None", - "NoneType", - {} - ], - "143": [ - "True", - "bool", - {} - ], - "144": [ - "True", - "bool", - {} - ], - "145": [ - "True", - "bool", - {} - ], - "151": [ - "True", - "bool", - {} - ], - "153": [ - "None", - "NoneType", - {} - ], - "154": [ - "True", - "bool", - {} - ], - "155": [ - "True", - "bool", - {} - ], - "156": [ - "ValueError", - -1, - {} - ], - "160": [ - "", - -2, - {} - ], - "162": { - "0": [ - "", - -2, - {} - ] - }, - "163": [ - "True", - "bool", - {} - ], - "166": [ - "True", - "bool", - {} - ], - "168": [ - "", - "generator", - {} - ], - "169": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_11" - ] - } - ], - "170": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_13" - ] - } - ], - "213": [ - "6", - "int", - { - "inner_calls": [ - "test_id_2" - ] - } - ], - "221": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "223": { - "0": [ - "range(0, 0)", - "range", - { - "len": 0 - } - ], - "1": [ - "range(0, 2)", - "range", - { - "len": 2 - } - ], - "2": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "3": [ - "range(0, 194)", - "range", - { - "len": 194 - } - ], - "4": [ - "range(0, 196)", - "range", - { - "len": 196 - } - ], - "5": [ - "range(0, 198)", - "range", - { - "len": 198 - } - ] - }, - "224": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "225": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "229": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "231": { - "1": [ - "False", - "bool", - {} - ], - "3": [ - "True", - "bool", - {} - ] - }, - "232": { - "3": [ - "", - -2, - {} - ] - }, - "234": [ - "", - "MyClass", - {} - ], - "236": [ - "", - "MyClass", - {} - ], - "237": [ - "", - "MyClass", - {} - ], - "239": { - "0": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "1": [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - }, - "240": [ - "", - -2, - {} - ], - "242": [ - ". at 0xABC>", - "generator", - {} - ], - "243": [ - "", - "function", - {} - ], - "244": [ - "{0, 1, 2, 3}", - "set", - { - "len": 4 - }, - [ - "<0>", - [ - "0", - "int", - {} - ] - ], - [ - "<1>", - [ - "1", - "int", - {} - ] - ], - [ - "<2>", - [ - "2", - "int", - {} - ] - ], - [ - "<3>", - [ - "3", - "int", - {} - ] - ] - ], - "245": [ - "", - "function", - {} - ], - "246": [ - "{0: 0}", - "dict", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "247": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "248": [ - "", - "function", - {} - ], - "249": [ - "", - "SlotClass", - { - "inner_calls": [ - "test_id_8" - ] - }, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "250": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "inner_calls": [ - "test_id_9" - ], - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "252": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "253": [ - "[1, 2, {'k': 23}]", - "list", - { - "inner_calls": [ - "test_id_10" - ], - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ], - "256": [ - "3", - "int", - {} - ], - "261": [ - "6", - "int", - {} - ], - "265": [ - "", - "function", - {} - ], - "269": [ - "2", - "int", - {} - ], - "272": [ - "(1, 2)", - "tuple", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ], - "275": [ - "ValueError()", - "ValueError", - {} - ], - "280": [ - "", - -2, - {} - ], - "281": [ - "None", - "NoneType", - {} - ], - "282": [ - "8", - "int", - {} - ], - "286": [ - "4", - "int", - {} - ], - "290": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "291": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "292": [ - "", - "generator", - {} - ], - "293": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "294": [ - "", - "generator", - {} - ], - "314": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "317": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "321": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - }, - "322": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "323": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "325": { - "1": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "327": { - "0": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "328": { - "1": [ - "1", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "331": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__exit__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "332": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__exit__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "334": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "3", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "100", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "100", - "int", - {} - ], - "5": [ - "101", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "195", - "int", - {} - ], - "5": [ - "196", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "196", - "int", - {} - ], - "4": [ - "197", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - } - }, - "335": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "337": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "339": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "340": [ - "", - -2, - {} - ], - "342": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "343": [ - "", - -2, - {} - ], - "345": { - "0": [ - "0", - "int", - {} - ] - }, - "346": { - "0": [ - "0", - "int", - {} - ] - }, - "347": [ - "", - -2, - {} - ], - "350": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "352": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "353": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "354": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "358": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "360": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "362": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "370": [ - "'1 + 2'", - "str", - { - "len": 5 - } - ], - "385": [ - "", - "function", - {} - ], - "386": [ - ". at 0xABC>", - "function", - {} - ], - "405": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[[]]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "2": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", - "list", - { - "len": 97 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "94", - [ - "[94, 95, 96, ..., 279, 280, 281]", - "list", - { - "len": 188 - }, - [ - "0", - [ - "94", - "int", - {} - ] - ], - [ - "1", - [ - "95", - "int", - {} - ] - ], - [ - "2", - [ - "96", - "int", - {} - ] - ], - [ - "185", - [ - "279", - "int", - {} - ] - ], - [ - "186", - [ - "280", - "int", - {} - ] - ], - [ - "187", - [ - "281", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ], - [ - "195", - [ - "293", - "int", - {} - ] - ] - ] - ] - ] - }, - "411": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "412": { - "1": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ] - }, - "2": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ] - }, - "3": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "4": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - }, - "5": { - "0": [ - "", - "builtin_function_or_method", - {} - ], - "1": [ - "", - "builtin_function_or_method", - {} - ], - "2": [ - "", - "builtin_function_or_method", - {} - ], - "3": [ - "", - "builtin_function_or_method", - {} - ], - "4": [ - "", - "builtin_function_or_method", - {} - ], - "5": [ - "", - "builtin_function_or_method", - {} - ] - } - }, - "413": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "5", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "288", - "int", - {} - ], - "4": [ - "289", - "int", - {} - ], - "5": [ - "290", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "291", - "int", - {} - ], - "4": [ - "292", - "int", - {} - ], - "5": [ - "293", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "294", - "int", - {} - ], - "4": [ - "295", - "int", - {} - ], - "5": [ - "296", - "int", - {} - ] - } - }, - "414": { - "1": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ] - }, - "2": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "3": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "4": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "5": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - } - }, - "415": { - "1": { - "0": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 294, 295, 296]", - "list", - { - "len": 198 - } - ] - ] - ] - } - }, - "416": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "417": { - "1": [ - "11.0", - "float", - {} - ], - "3": [ - "11.0", - "float", - {} - ] - }, - "422": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "424": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "0", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "0", - "int", - {} - ], - "4": [ - "0", - "int", - {} - ], - "5": [ - "0", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "1", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ], - "4": [ - "1", - "int", - {} - ], - "5": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ], - "4": [ - "2", - "int", - {} - ], - "5": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "426": { - "0": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "1": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "2": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "3": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "4": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "5": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ] - }, - "432": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "435": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "439": [ - "range(0, 1)", - "range", - { - "len": 1 - } - ], - "44": [ - "", - -2, - {} - ], - "441": [ - "", - "type", - {}, - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__init__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__slots__", - [ - "('slot1',)", - "tuple", - { - "len": 1 - }, - [ - "0", - [ - "'slot1'", - "str", - { - "len": 5 - } - ] - ] - ] - ], - [ - "slot1", - [ - "", - "member_descriptor", - {} - ] - ] - ], - "444": [ - "range(0, 1000)", - "range", - { - "len": 1000 - } - ], - "448": [ - "range(0, 1000)", - "range", - { - "len": 1000 - } - ], - "45": [ - "", - -2, - {} - ], - "46": [ - "", - -2, - {} - ], - "47": [ - "", - -2, - {} - ], - "478": { - "1": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[1]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ] - ] - }, - "2": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[2]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ] - ], - "3": [ - "[2, 3, 4]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ] - ] - }, - "3": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[97]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ] - ], - "2": [ - "[97, 98]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "188", - [ - "285", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ] - ], - "4": [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ] - ], - "5": [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ] - ] - }, - "4": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[98]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ] - ], - "2": [ - "[98, 99]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ] - ], - "3": [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "190", - [ - "288", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ] - ], - "5": [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ] - ] - }, - "5": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[99]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ] - ], - "2": [ - "[99, 100]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ] - ], - "3": [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "192", - [ - "291", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ] - ], - "4": [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ], - [ - "196", - [ - "295", - "int", - {} - ] - ] - ] - } - }, - "48": [ - "", - -2, - {} - ], - "480": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "482": { - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "191", - "int", - {} - ], - "4": [ - "192", - "int", - {} - ], - "5": [ - "193", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "193", - "int", - {} - ], - "4": [ - "194", - "int", - {} - ], - "5": [ - "195", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - } - }, - "486": { - "0": [ - "ZeroDivisionError: division by zero", - -1, - {} - ], - "1": [ - "1.0", - "float", - {} - ], - "2": [ - "ZeroDivisionError: division by zero", - -1, - {} - ], - "3": [ - "1.0", - "float", - {} - ] - }, - "49": [ - "", - -2, - {} - ], - "50": [ - "", - -2, - {} - ], - "51": [ - "", - -2, - {} - ], - "52": [ - "", - -2, - {} - ], - "527": { - "1": { - "0": [ - "[[], []]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], []]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ] - } - }, - "53": [ - "", - -2, - { - "inner_calls": [ - "test_id_6", - "test_id_7" - ] - } - ], - "534": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ] - }, - "54": [ - "", - -2, - {} - ], - "546": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "55": [ - "", - -2, - {} - ], - "56": [ - "", - -2, - {} - ], - "57": [ - "", - -2, - {} - ], - "58": [ - "", - -2, - {} - ], - "59": [ - "", - -2, - {} - ], - "60": [ - "", - -2, - {} - ], - "61": [ - "", - -2, - {} - ], - "62": [ - "", - -2, - {} - ], - "63": [ - "", - -2, - {} - ], - "64": [ - "", - -2, - {} - ], - "65": [ - "", - -2, - {} - ], - "66": [ - "", - -2, - {} - ], - "67": [ - "", - -2, - {} - ], - "68": [ - "", - -2, - {} - ], - "69": [ - "", - -2, - {} - ], - "70": [ - "", - -2, - {} - ], - "71": [ - "", - -2, - {} - ], - "72": [ - "", - -2, - {} - ], - "73": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 65, - "start": 64, - "tree_index": 46 - }, - { - "end": 205, - "start": 204, - "tree_index": 47 - }, - { - "end": 1254, - "start": 1250, - "tree_index": 66 - }, - { - "end": 118, - "start": 117, - "tree_index": 128 - }, - { - "end": 438, - "start": 437, - "tree_index": 240 - }, - { - "end": 417, - "start": 416, - "tree_index": 335 - }, - { - "end": 471, - "start": 470, - "tree_index": 340 - }, - { - "end": 503, - "start": 502, - "tree_index": 343 - }, - { - "end": 539, - "start": 538, - "tree_index": 347 - } - ], - "node_loops": { - "127": [ - 46 - ], - "128": [ - 46 - ], - "131": [ - 47 - ], - "132": [ - 47 - ], - "162": [ - 66 - ], - "221": [ - 46 - ], - "223": [ - 46 - ], - "224": [ - 46, - 128 - ], - "225": [ - 46, - 128 - ], - "229": [ - 47 - ], - "231": [ - 47 - ], - "232": [ - 47 - ], - "239": [ - 240 - ], - "317": [ - 46 - ], - "320": [ - 46 - ], - "321": [ - 46 - ], - "322": [ - 46, - 128 - ], - "323": [ - 46, - 128 - ], - "325": [ - 47 - ], - "326": [ - 47 - ], - "327": [ - 47 - ], - "328": [ - 47 - ], - "334": [ - 240, - 335 - ], - "335": [ - 240 - ], - "339": [ - 340 - ], - "342": [ - 343 - ], - "345": [ - 347 - ], - "346": [ - 347 - ], - "405": [ - 46 - ], - "411": [ - 46 - ], - "412": [ - 46, - 128 - ], - "413": [ - 46, - 128 - ], - "414": [ - 46, - 128 - ], - "415": [ - 46, - 128 - ], - "416": [ - 47 - ], - "417": [ - 47 - ], - "422": [ - 240, - 335 - ], - "424": [ - 240, - 335 - ], - "426": [ - 240 - ], - "478": [ - 46, - 128 - ], - "480": [ - 46, - 128 - ], - "482": [ - 46, - 128 - ], - "486": [ - 47 - ], - "492": [ - 240 - ], - "527": [ - 46, - 128 - ], - "534": [ - 47 - ], - "546": [ - 47 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 40, - "start": 16, - "tree_index": 44 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 55, - "start": 46, - "tree_index": 45 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 194, - "start": 56, - "tree_index": 46 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 359, - "start": 196, - "tree_index": 47 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 390, - "start": 365, - "tree_index": 48 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 453, - "start": 395, - "tree_index": 49 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 484, - "start": 458, - "tree_index": 50 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 517, - "start": 489, - "tree_index": 51 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 553, - "start": 522, - "tree_index": 52 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 578, - "start": 554, - "tree_index": 53 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 605, - "start": 583, - "tree_index": 54 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 812, - "start": 611, - "tree_index": 55 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 880, - "start": 818, - "tree_index": 56 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 922, - "start": 886, - "tree_index": 57 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 933, - "start": 928, - "tree_index": 58 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 944, - "start": 938, - "tree_index": 59 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 962, - "start": 949, - "tree_index": 60 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 972, - "start": 967, - "tree_index": 61 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1002, - "start": 978, - "tree_index": 62 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1032, - "start": 1008, - "tree_index": 63 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1067, - "start": 1037, - "tree_index": 64 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1238, - "start": 1069, - "tree_index": 65 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 1269, - "start": 1240, - "tree_index": 66 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1307, - "start": 1275, - "tree_index": 67 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1321, - "start": 1313, - "tree_index": 68 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1331, - "start": 1326, - "tree_index": 69 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1349, - "start": 1336, - "tree_index": 70 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1364, - "start": 1355, - "tree_index": 71 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1381, - "start": 1369, - "tree_index": 72 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1398, - "start": 1386, - "tree_index": 73 - }, - { - "classes": [], - "depth": 3, - "end": 40, - "start": 23, - "tree_index": 122 - }, - { - "classes": [], - "depth": 3, - "end": 79, - "start": 69, - "tree_index": 126 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 104, - "start": 89, - "tree_index": 127 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 194, - "start": 105, - "tree_index": 128 - }, - { - "classes": [], - "depth": 3, - "end": 217, - "start": 209, - "tree_index": 130 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 322, - "start": 219, - "tree_index": 131 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 359, - "start": 323, - "tree_index": 132 - }, - { - "classes": [], - "depth": 3, - "end": 390, - "start": 369, - "tree_index": 134 - }, - { - "classes": [], - "depth": 3, - "end": 453, - "start": 404, - "tree_index": 136 - }, - { - "classes": [], - "depth": 3, - "end": 484, - "start": 458, - "tree_index": 137 - }, - { - "classes": [], - "depth": 3, - "end": 517, - "start": 489, - "tree_index": 138 - }, - { - "classes": [], - "depth": 3, - "end": 553, - "start": 522, - "tree_index": 139 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 578, - "start": 574, - "tree_index": 141 - }, - { - "classes": [], - "depth": 3, - "end": 605, - "start": 583, - "tree_index": 142 - }, - { - "classes": [], - "depth": 3, - "end": 812, - "start": 618, - "tree_index": 143 - }, - { - "classes": [], - "depth": 3, - "end": 880, - "start": 825, - "tree_index": 144 - }, - { - "classes": [], - "depth": 3, - "end": 922, - "start": 893, - "tree_index": 145 - }, - { - "classes": [], - "depth": 3, - "end": 962, - "start": 956, - "tree_index": 151 - }, - { - "classes": [], - "depth": 3, - "end": 1002, - "start": 978, - "tree_index": 153 - }, - { - "classes": [], - "depth": 3, - "end": 1032, - "start": 1015, - "tree_index": 154 - }, - { - "classes": [], - "depth": 3, - "end": 1067, - "start": 1044, - "tree_index": 155 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1104, - "start": 1086, - "tree_index": 156 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1238, - "start": 1231, - "tree_index": 160 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1269, - "start": 1264, - "tree_index": 162 - }, - { - "classes": [], - "depth": 3, - "end": 1307, - "start": 1282, - "tree_index": 163 - }, - { - "classes": [], - "depth": 3, - "end": 1349, - "start": 1343, - "tree_index": 166 - }, - { - "classes": [], - "depth": 3, - "end": 1364, - "start": 1359, - "tree_index": 168 - }, - { - "classes": [], - "depth": 3, - "end": 1381, - "start": 1369, - "tree_index": 169 - }, - { - "classes": [], - "depth": 3, - "end": 1398, - "start": 1386, - "tree_index": 170 - }, - { - "classes": [], - "depth": 4, - "end": 35, - "start": 23, - "tree_index": 213 - }, - { - "classes": [], - "depth": 4, - "end": 74, - "start": 69, - "tree_index": 219 - }, - { - "classes": [], - "depth": 4, - "end": 104, - "start": 89, - "tree_index": 221 - }, - { - "classes": [], - "depth": 4, - "end": 134, - "start": 122, - "tree_index": 223 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 170, - "start": 148, - "tree_index": 224 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 194, - "start": 183, - "tree_index": 225 - }, - { - "classes": [], - "depth": 4, - "end": 214, - "start": 209, - "tree_index": 227 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 267, - "start": 244, - "tree_index": 229 - }, - { - "classes": [], - "depth": 4, - "end": 340, - "start": 334, - "tree_index": 231 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 359, - "start": 354, - "tree_index": 232 - }, - { - "classes": [], - "depth": 4, - "end": 378, - "start": 369, - "tree_index": 234 - }, - { - "classes": [], - "depth": 4, - "end": 390, - "start": 381, - "tree_index": 236 - }, - { - "classes": [], - "depth": 4, - "end": 396, - "start": 395, - "tree_index": 237 - }, - { - "classes": [], - "depth": 4, - "end": 432, - "start": 405, - "tree_index": 239 - }, - { - "classes": [ - "loop" - ], - "depth": 4, - "end": 452, - "start": 433, - "tree_index": 240 - }, - { - "classes": [], - "depth": 4, - "end": 461, - "start": 458, - "tree_index": 241 - }, - { - "classes": [], - "depth": 4, - "end": 483, - "start": 464, - "tree_index": 242 - }, - { - "classes": [], - "depth": 4, - "end": 494, - "start": 489, - "tree_index": 243 - }, - { - "classes": [], - "depth": 4, - "end": 516, - "start": 495, - "tree_index": 244 - }, - { - "classes": [], - "depth": 4, - "end": 527, - "start": 522, - "tree_index": 245 - }, - { - "classes": [], - "depth": 4, - "end": 552, - "start": 528, - "tree_index": 246 - }, - { - "classes": [], - "depth": 4, - "end": 564, - "start": 563, - "tree_index": 247 - }, - { - "classes": [], - "depth": 4, - "end": 588, - "start": 583, - "tree_index": 248 - }, - { - "classes": [], - "depth": 4, - "end": 604, - "start": 589, - "tree_index": 249 - }, - { - "classes": [], - "depth": 4, - "end": 729, - "start": 618, - "tree_index": 250 - }, - { - "classes": [], - "depth": 4, - "end": 812, - "start": 733, - "tree_index": 252 - }, - { - "classes": [], - "depth": 4, - "end": 859, - "start": 825, - "tree_index": 253 - }, - { - "classes": [], - "depth": 4, - "end": 917, - "start": 893, - "tree_index": 256 - }, - { - "classes": [], - "depth": 4, - "end": 957, - "start": 956, - "tree_index": 261 - }, - { - "classes": [], - "depth": 4, - "end": 983, - "start": 978, - "tree_index": 265 - }, - { - "classes": [], - "depth": 4, - "end": 1027, - "start": 1015, - "tree_index": 269 - }, - { - "classes": [], - "depth": 4, - "end": 1057, - "start": 1044, - "tree_index": 272 - }, - { - "classes": [], - "depth": 4, - "end": 1104, - "start": 1092, - "tree_index": 275 - }, - { - "classes": [], - "depth": 4, - "end": 1130, - "start": 1116, - "tree_index": 276 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1149, - "start": 1145, - "tree_index": 277 - }, - { - "classes": [], - "depth": 4, - "end": 1170, - "start": 1161, - "tree_index": 278 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1184, - "start": 1180, - "tree_index": 279 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1209, - "start": 1205, - "tree_index": 280 - }, - { - "classes": [], - "depth": 4, - "end": 1238, - "start": 1231, - "tree_index": 281 - }, - { - "classes": [], - "depth": 4, - "end": 1302, - "start": 1282, - "tree_index": 282 - }, - { - "classes": [], - "depth": 4, - "end": 1344, - "start": 1343, - "tree_index": 286 - }, - { - "classes": [], - "depth": 4, - "end": 1362, - "start": 1359, - "tree_index": 290 - }, - { - "classes": [], - "depth": 4, - "end": 1378, - "start": 1369, - "tree_index": 291 - }, - { - "classes": [], - "depth": 4, - "end": 1380, - "start": 1379, - "tree_index": 292 - }, - { - "classes": [], - "depth": 4, - "end": 1395, - "start": 1386, - "tree_index": 293 - }, - { - "classes": [], - "depth": 4, - "end": 1397, - "start": 1396, - "tree_index": 294 - }, - { - "classes": [], - "depth": 5, - "end": 32, - "start": 23, - "tree_index": 314 - }, - { - "classes": [], - "depth": 5, - "end": 100, - "start": 89, - "tree_index": 317 - }, - { - "classes": [], - "depth": 5, - "end": 127, - "start": 122, - "tree_index": 320 - }, - { - "classes": [], - "depth": 5, - "end": 133, - "start": 128, - "tree_index": 321 - }, - { - "classes": [], - "depth": 5, - "end": 170, - "start": 148, - "tree_index": 322 - }, - { - "classes": [], - "depth": 5, - "end": 194, - "start": 183, - "tree_index": 323 - }, - { - "classes": [], - "depth": 5, - "end": 267, - "start": 244, - "tree_index": 325 - }, - { - "classes": [], - "depth": 5, - "end": 300, - "start": 283, - "tree_index": 326 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 322, - "start": 314, - "tree_index": 327 - }, - { - "classes": [], - "depth": 5, - "end": 335, - "start": 334, - "tree_index": 328 - }, - { - "classes": [], - "depth": 5, - "end": 376, - "start": 369, - "tree_index": 331 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 381, - "tree_index": 332 - }, - { - "classes": [], - "depth": 5, - "end": 411, - "start": 406, - "tree_index": 334 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 431, - "start": 412, - "tree_index": 335 - }, - { - "classes": [], - "depth": 5, - "end": 452, - "start": 442, - "tree_index": 337 - }, - { - "classes": [], - "depth": 5, - "end": 465, - "start": 464, - "tree_index": 339 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 483, - "start": 466, - "tree_index": 340 - }, - { - "classes": [], - "depth": 5, - "end": 497, - "start": 496, - "tree_index": 342 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 515, - "start": 498, - "tree_index": 343 - }, - { - "classes": [], - "depth": 5, - "end": 530, - "start": 529, - "tree_index": 345 - }, - { - "classes": [], - "depth": 5, - "end": 533, - "start": 532, - "tree_index": 346 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 551, - "start": 534, - "tree_index": 347 - }, - { - "classes": [], - "depth": 5, - "end": 590, - "start": 589, - "tree_index": 350 - }, - { - "classes": [], - "depth": 5, - "end": 604, - "start": 593, - "tree_index": 352 - }, - { - "classes": [], - "depth": 5, - "end": 630, - "start": 618, - "tree_index": 353 - }, - { - "classes": [], - "depth": 5, - "end": 657, - "start": 640, - "tree_index": 354 - }, - { - "classes": [], - "depth": 5, - "end": 751, - "start": 734, - "tree_index": 358 - }, - { - "classes": [], - "depth": 5, - "end": 811, - "start": 782, - "tree_index": 360 - }, - { - "classes": [], - "depth": 5, - "end": 837, - "start": 825, - "tree_index": 362 - }, - { - "classes": [], - "depth": 5, - "end": 845, - "start": 838, - "tree_index": 363 - }, - { - "classes": [], - "depth": 5, - "end": 897, - "start": 893, - "tree_index": 369 - }, - { - "classes": [], - "depth": 5, - "end": 916, - "start": 898, - "tree_index": 370 - }, - { - "classes": [], - "depth": 5, - "end": 1102, - "start": 1092, - "tree_index": 382 - }, - { - "classes": [], - "depth": 5, - "end": 1236, - "start": 1231, - "tree_index": 385 - }, - { - "classes": [], - "depth": 5, - "end": 1298, - "start": 1283, - "tree_index": 386 - }, - { - "classes": [], - "depth": 6, - "end": 93, - "start": 89, - "tree_index": 405 - }, - { - "classes": [], - "depth": 6, - "end": 133, - "start": 132, - "tree_index": 411 - }, - { - "classes": [], - "depth": 6, - "end": 163, - "start": 148, - "tree_index": 412 - }, - { - "classes": [], - "depth": 6, - "end": 169, - "start": 164, - "tree_index": 413 - }, - { - "classes": [], - "depth": 6, - "end": 188, - "start": 183, - "tree_index": 414 - }, - { - "classes": [], - "depth": 6, - "end": 193, - "start": 189, - "tree_index": 415 - }, - { - "classes": [], - "depth": 6, - "end": 249, - "start": 244, - "tree_index": 416 - }, - { - "classes": [], - "depth": 6, - "end": 266, - "start": 250, - "tree_index": 417 - }, - { - "classes": [], - "depth": 6, - "end": 407, - "start": 406, - "tree_index": 422 - }, - { - "classes": [], - "depth": 6, - "end": 411, - "start": 410, - "tree_index": 424 - }, - { - "classes": [], - "depth": 6, - "end": 431, - "start": 421, - "tree_index": 426 - }, - { - "classes": [], - "depth": 6, - "end": 447, - "start": 442, - "tree_index": 428 - }, - { - "classes": [], - "depth": 6, - "end": 483, - "start": 475, - "tree_index": 432 - }, - { - "classes": [], - "depth": 6, - "end": 515, - "start": 507, - "tree_index": 435 - }, - { - "classes": [], - "depth": 6, - "end": 551, - "start": 543, - "tree_index": 439 - }, - { - "classes": [], - "depth": 6, - "end": 602, - "start": 593, - "tree_index": 441 - }, - { - "classes": [], - "depth": 6, - "end": 644, - "start": 640, - "tree_index": 443 - }, - { - "classes": [], - "depth": 6, - "end": 656, - "start": 645, - "tree_index": 444 - }, - { - "classes": [], - "depth": 6, - "end": 738, - "start": 734, - "tree_index": 447 - }, - { - "classes": [], - "depth": 6, - "end": 750, - "start": 739, - "tree_index": 448 - }, - { - "classes": [], - "depth": 6, - "end": 786, - "start": 782, - "tree_index": 449 - }, - { - "classes": [], - "depth": 6, - "end": 1298, - "start": 1293, - "tree_index": 474 - }, - { - "classes": [], - "depth": 7, - "end": 156, - "start": 148, - "tree_index": 478 - }, - { - "classes": [], - "depth": 7, - "end": 165, - "start": 164, - "tree_index": 480 - }, - { - "classes": [], - "depth": 7, - "end": 169, - "start": 168, - "tree_index": 482 - }, - { - "classes": [], - "depth": 7, - "end": 261, - "start": 250, - "tree_index": 486 - }, - { - "classes": [], - "depth": 7, - "end": 426, - "start": 421, - "tree_index": 492 - }, - { - "classes": [], - "depth": 7, - "end": 480, - "start": 475, - "tree_index": 496 - }, - { - "classes": [], - "depth": 7, - "end": 512, - "start": 507, - "tree_index": 499 - }, - { - "classes": [], - "depth": 7, - "end": 548, - "start": 543, - "tree_index": 502 - }, - { - "classes": [], - "depth": 7, - "end": 650, - "start": 645, - "tree_index": 506 - }, - { - "classes": [], - "depth": 7, - "end": 744, - "start": 739, - "tree_index": 511 - }, - { - "classes": [], - "depth": 7, - "end": 1294, - "start": 1293, - "tree_index": 524 - }, - { - "classes": [], - "depth": 8, - "end": 152, - "start": 148, - "tree_index": 527 - }, - { - "classes": [], - "depth": 8, - "end": 260, - "start": 255, - "tree_index": 534 - }, - { - "classes": [], - "depth": 9, - "end": 256, - "start": 255, - "tree_index": 546 - } - ] - }, - "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n sum (n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", - "lineno": 63, - "name": "main" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "3" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "3", - "int", - {} - ], - "177": [ - "3", - "int", - {} - ], - "179": [ - "2", - "int", - { - "inner_calls": [ - "test_id_3" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "299": [ - "2", - "int", - {} - ], - "395": [ - "3", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "6", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "6", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "2" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "2", - "int", - {} - ], - "177": [ - "2", - "int", - {} - ], - "179": [ - "1", - "int", - { - "inner_calls": [ - "test_id_4" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "299": [ - "1", - "int", - {} - ], - "395": [ - "2", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "2", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "2", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "1" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "1", - "int", - {} - ], - "19": [ - "", - -2, - {} - ], - "78": [ - "True", - "bool", - {} - ], - "79": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "1", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ], - "204": [ - "", - "MyClass", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "getset_descriptor", - "int", - "list", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 204 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "117": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 117 - } - ] - }, - "html_body": " @eye\n def __enter__(self):\n pass", - "lineno": 54, - "name": "MyClass.__enter__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "exc_type", - "None" - ], - [ - "exc_val", - "None" - ], - [ - "exc_tb", - "None" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "120": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 59, - "start": 55, - "tree_index": 120 - } - ] - }, - "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", - "lineno": 58, - "name": "MyClass.__exit__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ], - "204": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 204 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "[0, 1, 2, ..., 997, 998, 999]" - ], - [ - "pos2", - "'hello'" - ], - [ - "key1", - "3" - ], - [ - "key2", - "8" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'kwarg1': {'key': 'value'}}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "186": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "187": [ - "'hello'", - "str", - { - "len": 5 - } - ], - "188": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "96": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 96 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 187 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 188 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "1" - ], - [ - "pos2", - "2" - ], - [ - "key1", - "3" - ], - [ - "key2", - "4" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'k': 23}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "186": [ - "1", - "int", - {} - ], - "187": [ - "2", - "int", - {} - ], - "188": [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "96": [ - "[1, 2, {'k': 23}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 96 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 187 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 188 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[1, 2, {'k': 23}]", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "34": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "104": [ - "", - "islice", - {} - ], - "105": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "195": [ - "", - "type", - {}, - [ - "__doc__", - [ - "'islice(iterab...s an iterator.'", - "str", - { - "len": 454 - } - ] - ], - [ - "__getattribute__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__iter__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__new__", - [ - "", - "builtin_function_or_method", - {} - ] - ], - [ - "__next__", - [ - "", - "wrapper_descriptor", - {} - ] - ], - [ - "__reduce__", - [ - "", - "method_descriptor", - {} - ] - ], - [ - "__setstate__", - [ - "", - "method_descriptor", - {} - ] - ] - ], - "196": [ - "", - "generator", - {} - ], - "198": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "309": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "310": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "34": [ - "", - -2, - { - "inner_calls": [ - "test_id_12" - ] - } - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 34 - } - ], - "node_loops": { - "105": [ - 34 - ], - "198": [ - 34 - ], - "309": [ - 34 - ], - "310": [ - 34 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 61, - "start": 18, - "tree_index": 34 - }, - { - "classes": [], - "depth": 3, - "end": 43, - "start": 31, - "tree_index": 104 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 61, - "start": 53, - "tree_index": 105 - }, - { - "classes": [], - "depth": 4, - "end": 37, - "start": 31, - "tree_index": 195 - }, - { - "classes": [], - "depth": 4, - "end": 39, - "start": 38, - "tree_index": 196 - }, - { - "classes": [], - "depth": 4, - "end": 61, - "start": 53, - "tree_index": 198 - }, - { - "classes": [], - "depth": 5, - "end": 58, - "start": 53, - "tree_index": 309 - }, - { - "classes": [], - "depth": 5, - "end": 60, - "start": 59, - "tree_index": 310 - } - ] - }, - "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", - "lineno": 37, - "name": "use_gen_1" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "31": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - }, - { - "index": 4, - "loops": {} - }, - { - "index": 5, - "loops": {} - } - ] - }, - "node_values": { - "100": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "193": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "306": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ], - "4": [ - "4", - "int", - {} - ], - "5": [ - "5", - "int", - {} - ] - }, - "31": [ - "", - -2, - {} - ], - "99": [ - "range(0, 6)", - "range", - { - "len": 6 - } - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 20, - "start": 19, - "tree_index": 31 - } - ], - "node_loops": { - "100": [ - 31 - ], - "193": [ - 31 - ], - "306": [ - 31 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 49, - "start": 11, - "tree_index": 31 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 24, - "tree_index": 99 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 42, - "tree_index": 100 - }, - { - "classes": [], - "depth": 4, - "end": 29, - "start": 24, - "tree_index": 191 - }, - { - "classes": [], - "depth": 4, - "end": 49, - "start": 42, - "tree_index": 193 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 306 - } - ] - }, - "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", - "lineno": 31, - "name": "gen" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "37": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "109": [ - "", - "generator", - {} - ], - "110": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "201": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "311": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "312": { - "0": [ - "3", - "int", - {} - ], - "1": [ - "4", - "int", - {} - ], - "2": [ - "5", - "int", - {} - ] - }, - "37": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 37 - } - ], - "node_loops": { - "110": [ - 37 - ], - "201": [ - 37 - ], - "311": [ - 37 - ], - "312": [ - 37 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 50, - "start": 18, - "tree_index": 37 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 31, - "tree_index": 109 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 50, - "start": 42, - "tree_index": 110 - }, - { - "classes": [], - "depth": 4, - "end": 50, - "start": 42, - "tree_index": 201 - }, - { - "classes": [], - "depth": 5, - "end": 47, - "start": 42, - "tree_index": 311 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 312 - } - ] - }, - "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", - "lineno": 43, - "name": "use_gen_2" - }, - "return_value": "None", - "traceback": null - } -] \ No newline at end of file diff --git a/tests/golden-files/3.7/traced.json b/tests/golden-files/3.7/traced.json deleted file mode 100644 index 21906f6..0000000 --- a/tests/golden-files/3.7/traced.json +++ /dev/null @@ -1,1968 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": {}, - "node_values": { - "1": [ - "", - -2, - {} - ], - "13": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_15" - ] - } - ], - "2": [ - "", - -2, - {} - ], - "27": [ - "", - "function", - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "node_loops": { - "103": [ - 104 - ], - "105": [ - 82 - ], - "117": [ - 100, - 118 - ], - "118": [ - 100 - ], - "121": [ - 104 - ], - "123": [ - 104 - ], - "127": [ - 82 - ], - "136": [ - 100, - 118 - ], - "140": [ - 100 - ], - "150": [ - 82 - ], - "152": [ - 82 - ], - "157": [ - 100 - ], - "158": [ - 100 - ], - "34": [ - 19 - ], - "53": [ - 19 - ], - "72": [ - 19 - ], - "73": [ - 19 - ], - "81": [ - 82 - ], - "95": [ - 19 - ], - "97": [ - 19 - ], - "99": [ - 100 - ] - } - }, - "html_body": "import birdseye.trace_module_deep\n\n\ndef deco(f):\n return f\n\n\ndef m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()\n\n\nm()", - "lineno": 1, - "name": "$$__FILE__$$" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "100": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "118": [ - { - "index": 0, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "118": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - } - ], - "19": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ], - "82": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "10": [ - "", - -2, - {} - ], - "100": [ - "", - -2, - {} - ], - "105": { - "0": [ - ".A.. at 0xABC>", - "function", - {} - ], - "1": [ - ".A.. at 0xABC>", - "function", - {} - ], - "2": [ - ".A.. at 0xABC>", - "function", - {} - ] - }, - "108": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "11": [ - "", - -2, - {} - ], - "113": [ - ".A object at 0xABC>", - "m..A", - {} - ], - "117": { - "1": { - "0": [ - "0", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - } - }, - "118": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "12": [ - "", - -2, - {} - ], - "120": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "135": [ - ".A'>", - "type", - {}, - [ - "B", - [ - ".A.B'>", - "type", - {}, - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.traced'", - "str", - { - "len": 19 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.traced'", - "str", - { - "len": 19 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "bar", - [ - ".A.bar at 0xABC>", - "function", - {} - ] - ], - [ - "foo", - [ - ".A.foo at 0xABC>", - "function", - {} - ] - ], - [ - "i", - [ - "2", - "int", - {} - ] - ] - ], - "136": { - "1": { - "0": [ - "0", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - } - }, - "140": { - "0": [ - "range(0, 0)", - "range", - { - "len": 0 - } - ], - "1": [ - "range(0, 1)", - "range", - { - "len": 1 - } - ], - "2": [ - "range(0, 2)", - "range", - { - "len": 2 - } - ] - }, - "158": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "18": [ - "'9'", - "str", - { - "len": 1 - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "21": [ - "", - -2, - {} - ], - "22": [ - "", - -2, - {} - ], - "23": [ - "", - -2, - {} - ], - "24": [ - "", - -2, - { - "inner_calls": [ - "test_id_16" - ] - } - ], - "25": [ - "", - -2, - {} - ], - "26": [ - "4", - "int", - { - "inner_calls": [ - "test_id_18" - ] - } - ], - "31": [ - "9", - "int", - {} - ], - "33": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "34": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "35": [ - "", - -2, - {} - ], - "36": [ - "9", - "int", - {} - ], - "37": [ - "[0, 8, 16]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "8", - "int", - {} - ] - ], - [ - "2", - [ - "16", - "int", - {} - ] - ] - ], - "38": [ - "'{8, 9, 7}'", - "str", - { - "len": 9 - } - ], - "43": [ - "", - "function", - {} - ], - "46": [ - ".A.bar of .A object at 0xABC>>", - "method", - {} - ], - "53": { - "0": [ - "'0'", - "str", - { - "len": 1 - } - ], - "1": [ - "'1'", - "str", - { - "len": 1 - } - ], - "2": [ - "'4'", - "str", - { - "len": 1 - } - ] - }, - "54": [ - "'[[], [0], [0, 2]]'", - "str", - { - "len": 17 - } - ], - "55": [ - ".A. at 0xABC>", - "function", - {} - ], - "57": [ - ".A. at 0xABC>", - "function", - {} - ], - "60": [ - "{8, 9, 7}", - "set", - { - "len": 3 - }, - [ - "<0>", - [ - "8", - "int", - {} - ] - ], - [ - "<1>", - [ - "9", - "int", - {} - ] - ], - [ - "<2>", - [ - "7", - "int", - {} - ] - ] - ], - "69": [ - ".A object at 0xABC>", - "m..A", - { - "inner_calls": [ - "test_id_17" - ] - } - ], - "73": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ] - }, - "75": [ - "[[], [0], [0, 2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[0, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "81": { - "0": [ - "7", - "int", - {} - ], - "1": [ - "8", - "int", - {} - ], - "2": [ - "9", - "int", - {} - ] - }, - "82": [ - "", - -2, - {} - ], - "9": [ - "", - -2, - {} - ], - "93": [ - ".A.foo of .A object at 0xABC>>", - "method", - {} - ], - "95": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "97": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "99": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "2": [ - "[0, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - } - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 61, - "start": 60, - "tree_index": 19 - }, - { - "end": 314, - "start": 313, - "tree_index": 82 - }, - { - "end": 181, - "start": 180, - "tree_index": 100 - }, - { - "end": 257, - "start": 256, - "tree_index": 104 - }, - { - "end": 145, - "start": 144, - "tree_index": 118 - } - ], - "node_loops": { - "103": [ - 104 - ], - "105": [ - 82 - ], - "117": [ - 100, - 118 - ], - "118": [ - 100 - ], - "121": [ - 104 - ], - "123": [ - 104 - ], - "127": [ - 82 - ], - "136": [ - 100, - 118 - ], - "140": [ - 100 - ], - "150": [ - 82 - ], - "152": [ - 82 - ], - "157": [ - 100 - ], - "158": [ - 100 - ], - "34": [ - 19 - ], - "53": [ - 19 - ], - "72": [ - 19 - ], - "73": [ - 19 - ], - "81": [ - 82 - ], - "95": [ - 19 - ], - "97": [ - 19 - ], - "99": [ - 100 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 1, - "end": 509, - "start": 0, - "tree_index": 3 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 20, - "start": 13, - "tree_index": 9 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 33, - "start": 25, - "tree_index": 10 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 488, - "start": 35, - "tree_index": 11 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 509, - "start": 494, - "tree_index": 12 - }, - { - "classes": [], - "depth": 3, - "end": 33, - "start": 25, - "tree_index": 18 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 97, - "start": 48, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 195, - "start": 99, - "tree_index": 20 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 225, - "start": 205, - "tree_index": 21 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 274, - "start": 234, - "tree_index": 22 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 328, - "start": 283, - "tree_index": 23 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 439, - "start": 330, - "tree_index": 24 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 488, - "start": 441, - "tree_index": 25 - }, - { - "classes": [], - "depth": 3, - "end": 509, - "start": 494, - "tree_index": 26 - }, - { - "classes": [], - "depth": 4, - "end": 28, - "start": 25, - "tree_index": 30 - }, - { - "classes": [], - "depth": 4, - "end": 32, - "start": 29, - "tree_index": 31 - }, - { - "classes": [], - "depth": 4, - "end": 73, - "start": 65, - "tree_index": 33 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 97, - "start": 87, - "tree_index": 34 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 195, - "start": 128, - "tree_index": 35 - }, - { - "classes": [], - "depth": 4, - "end": 225, - "start": 205, - "tree_index": 36 - }, - { - "classes": [], - "depth": 4, - "end": 274, - "start": 234, - "tree_index": 37 - }, - { - "classes": [], - "depth": 4, - "end": 328, - "start": 283, - "tree_index": 38 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 388, - "start": 379, - "tree_index": 40 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 415, - "start": 401, - "tree_index": 41 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 439, - "start": 428, - "tree_index": 42 - }, - { - "classes": [], - "depth": 4, - "end": 343, - "start": 339, - "tree_index": 43 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 488, - "start": 476, - "tree_index": 45 - }, - { - "classes": [], - "depth": 4, - "end": 507, - "start": 494, - "tree_index": 46 - }, - { - "classes": [], - "depth": 5, - "end": 70, - "start": 65, - "tree_index": 51 - }, - { - "classes": [], - "depth": 5, - "end": 97, - "start": 87, - "tree_index": 53 - }, - { - "classes": [], - "depth": 5, - "end": 195, - "start": 128, - "tree_index": 54 - }, - { - "classes": [], - "depth": 5, - "end": 218, - "start": 206, - "tree_index": 55 - }, - { - "classes": [], - "depth": 5, - "end": 270, - "start": 235, - "tree_index": 57 - }, - { - "classes": [], - "depth": 5, - "end": 286, - "start": 283, - "tree_index": 59 - }, - { - "classes": [], - "depth": 5, - "end": 327, - "start": 287, - "tree_index": 60 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 383, - "tree_index": 63 - }, - { - "classes": [], - "depth": 5, - "end": 415, - "start": 401, - "tree_index": 64 - }, - { - "classes": [], - "depth": 5, - "end": 439, - "start": 435, - "tree_index": 65 - }, - { - "classes": [], - "depth": 5, - "end": 488, - "start": 483, - "tree_index": 68 - }, - { - "classes": [], - "depth": 5, - "end": 503, - "start": 494, - "tree_index": 69 - }, - { - "classes": [], - "depth": 6, - "end": 90, - "start": 87, - "tree_index": 72 - }, - { - "classes": [], - "depth": 6, - "end": 96, - "start": 91, - "tree_index": 73 - }, - { - "classes": [], - "depth": 6, - "end": 131, - "start": 128, - "tree_index": 74 - }, - { - "classes": [], - "depth": 6, - "end": 194, - "start": 132, - "tree_index": 75 - }, - { - "classes": [], - "depth": 6, - "end": 270, - "start": 245, - "tree_index": 79 - }, - { - "classes": [], - "depth": 6, - "end": 308, - "start": 288, - "tree_index": 81 - }, - { - "classes": [ - "loop" - ], - "depth": 6, - "end": 326, - "start": 309, - "tree_index": 82 - }, - { - "classes": [], - "depth": 6, - "end": 404, - "start": 401, - "tree_index": 87 - }, - { - "classes": [], - "depth": 6, - "end": 414, - "start": 405, - "tree_index": 88 - }, - { - "classes": [], - "depth": 6, - "end": 501, - "start": 494, - "tree_index": 93 - }, - { - "classes": [], - "depth": 7, - "end": 92, - "start": 91, - "tree_index": 95 - }, - { - "classes": [], - "depth": 7, - "end": 96, - "start": 95, - "tree_index": 97 - }, - { - "classes": [], - "depth": 7, - "end": 158, - "start": 133, - "tree_index": 99 - }, - { - "classes": [ - "loop" - ], - "depth": 7, - "end": 193, - "start": 176, - "tree_index": 100 - }, - { - "classes": [], - "depth": 7, - "end": 251, - "start": 246, - "tree_index": 103 - }, - { - "classes": [ - "loop" - ], - "depth": 7, - "end": 269, - "start": 252, - "tree_index": 104 - }, - { - "classes": [], - "depth": 7, - "end": 304, - "start": 289, - "tree_index": 105 - }, - { - "classes": [], - "depth": 7, - "end": 326, - "start": 318, - "tree_index": 108 - }, - { - "classes": [], - "depth": 7, - "end": 410, - "start": 405, - "tree_index": 110 - }, - { - "classes": [], - "depth": 7, - "end": 414, - "start": 413, - "tree_index": 112 - }, - { - "classes": [], - "depth": 7, - "end": 497, - "start": 494, - "tree_index": 113 - }, - { - "classes": [], - "depth": 8, - "end": 139, - "start": 134, - "tree_index": 117 - }, - { - "classes": [ - "loop" - ], - "depth": 8, - "end": 157, - "start": 140, - "tree_index": 118 - }, - { - "classes": [], - "depth": 8, - "end": 193, - "start": 185, - "tree_index": 120 - }, - { - "classes": [], - "depth": 8, - "end": 247, - "start": 246, - "tree_index": 121 - }, - { - "classes": [], - "depth": 8, - "end": 251, - "start": 250, - "tree_index": 123 - }, - { - "classes": [], - "depth": 8, - "end": 269, - "start": 261, - "tree_index": 125 - }, - { - "classes": [], - "depth": 8, - "end": 304, - "start": 299, - "tree_index": 127 - }, - { - "classes": [], - "depth": 8, - "end": 323, - "start": 318, - "tree_index": 129 - }, - { - "classes": [], - "depth": 8, - "end": 495, - "start": 494, - "tree_index": 135 - }, - { - "classes": [], - "depth": 9, - "end": 135, - "start": 134, - "tree_index": 136 - }, - { - "classes": [], - "depth": 9, - "end": 157, - "start": 149, - "tree_index": 140 - }, - { - "classes": [], - "depth": 9, - "end": 190, - "start": 185, - "tree_index": 142 - }, - { - "classes": [], - "depth": 9, - "end": 266, - "start": 261, - "tree_index": 147 - }, - { - "classes": [], - "depth": 9, - "end": 300, - "start": 299, - "tree_index": 150 - }, - { - "classes": [], - "depth": 9, - "end": 304, - "start": 303, - "tree_index": 152 - }, - { - "classes": [], - "depth": 10, - "end": 154, - "start": 149, - "tree_index": 157 - }, - { - "classes": [], - "depth": 10, - "end": 156, - "start": 155, - "tree_index": 158 - } - ] - }, - "html_body": "def m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()", - "lineno": 8, - "name": "m" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "f", - ".A.foo at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "15": [ - ".A.foo at 0xABC>", - "function", - {} - ], - "7": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 1, - "end": 25, - "start": 0, - "tree_index": 2 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 25, - "start": 17, - "tree_index": 7 - }, - { - "classes": [], - "depth": 3, - "end": 25, - "start": 24, - "tree_index": 15 - } - ] - }, - "html_body": "def deco(f):\n return f", - "lineno": 4, - "name": "deco" - }, - "return_value": ".A.foo at 0xABC>", - "traceback": null - }, - { - "arguments": [ - [ - "self", - ".A object at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "110": [ - "3", - "int", - {} - ], - "112": [ - "0", - "int", - {} - ], - "40": [ - "", - -2, - {} - ], - "41": [ - "", - -2, - {} - ], - "42": [ - "", - -2, - {} - ], - "63": [ - "0", - "int", - {} - ], - "64": [ - "'3'", - "str", - { - "len": 1 - } - ], - "65": [ - ".A object at 0xABC>", - "m..A", - {} - ], - "88": [ - "3", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 36, - "start": 27, - "tree_index": 40 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 63, - "start": 49, - "tree_index": 41 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 87, - "start": 76, - "tree_index": 42 - }, - { - "classes": [], - "depth": 5, - "end": 36, - "start": 31, - "tree_index": 63 - }, - { - "classes": [], - "depth": 5, - "end": 63, - "start": 49, - "tree_index": 64 - }, - { - "classes": [], - "depth": 5, - "end": 87, - "start": 83, - "tree_index": 65 - }, - { - "classes": [], - "depth": 6, - "end": 52, - "start": 49, - "tree_index": 87 - }, - { - "classes": [], - "depth": 6, - "end": 62, - "start": 53, - "tree_index": 88 - }, - { - "classes": [], - "depth": 7, - "end": 58, - "start": 53, - "tree_index": 110 - }, - { - "classes": [], - "depth": 7, - "end": 62, - "start": 61, - "tree_index": 112 - } - ] - }, - "html_body": " @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self", - "lineno": 24, - "name": "foo" - }, - "return_value": ".A object at 0xABC>", - "traceback": null - }, - { - "arguments": [ - [ - "self", - ".A object at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "45": [ - "", - -2, - {} - ], - "68": [ - "4", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "builtin_function_or_method", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "method_descriptor", - "range", - "set", - "str", - "tuple", - "type", - "wrapper_descriptor" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 39, - "start": 27, - "tree_index": 45 - }, - { - "classes": [], - "depth": 5, - "end": 39, - "start": 34, - "tree_index": 68 - } - ] - }, - "html_body": " def bar(self):\n return 1 + 3", - "lineno": 30, - "name": "bar" - }, - "return_value": "4", - "traceback": null - } -] \ No newline at end of file diff --git a/tests/test_utils.py b/tests/test_utils.py index 50a8e34..427dc2b 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -156,8 +156,7 @@ def test_cheap_repr(self): arr = arr.reshape((100, 100)) df = pd.DataFrame(arr) series = df[0] - self.assertEqual(cheap_repr(series), - "0 = np.int64(0); 1 = np.int64(100); 2 = np.int64(200); ...; 97 = np.int64(9700); 98 = np.int64(9800); 99 = np.int64(9900)") + self.assertEqual(cheap_repr(series), "0 = 0; 1 = 100; 2 = 200; ...; 97 = 9700; 98 = 9800; 99 = 9900") def test_read_source_file_as_string(self): import linecache diff --git a/tox.ini b/tox.ini index 31e0442..b53f99c 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,8 @@ envlist = py38,py39,py310,py311,py312,py313 deps = .[tests] -commands = pytest +commands = ./misc/test.sh +allowlist_externals = ./misc/test.sh passenv = FIX_TESTS From bf8fad00c92543468966102787ead97e717cc4e6 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 21:36:14 +0200 Subject: [PATCH 06/15] test 3.8 to 3.13 --- tests/golden-files/3.10/gold.json | 13887 +++++++++++++++++++++++++ tests/golden-files/3.10/traced.json | 1785 ++++ tests/golden-files/3.11/gold.json | 13887 +++++++++++++++++++++++++ tests/golden-files/3.11/traced.json | 1785 ++++ tests/golden-files/3.12/gold.json | 13897 ++++++++++++++++++++++++++ tests/golden-files/3.12/traced.json | 1785 ++++ 6 files changed, 47026 insertions(+) create mode 100644 tests/golden-files/3.10/gold.json create mode 100644 tests/golden-files/3.10/traced.json create mode 100644 tests/golden-files/3.11/gold.json create mode 100644 tests/golden-files/3.11/traced.json create mode 100644 tests/golden-files/3.12/gold.json create mode 100644 tests/golden-files/3.12/traced.json diff --git a/tests/golden-files/3.10/gold.json b/tests/golden-files/3.10/gold.json new file mode 100644 index 0000000..b770743 --- /dev/null +++ b/tests/golden-files/3.10/gold.json @@ -0,0 +1,13887 @@ +[ + { + "arguments": [], + "data": { + "loop_iterations": { + "240": [ + { + "index": 0, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 1, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 97, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 98, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 99, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + } + ], + "340": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "343": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "347": [ + { + "index": 0, + "loops": {} + } + ], + "46": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ] + } + }, + { + "index": 97, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 191, + "loops": {} + }, + { + "index": 192, + "loops": {} + }, + { + "index": 193, + "loops": {} + } + ] + } + }, + { + "index": 98, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 193, + "loops": {} + }, + { + "index": 194, + "loops": {} + }, + { + "index": 195, + "loops": {} + } + ] + } + }, + { + "index": 99, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 195, + "loops": {} + }, + { + "index": 196, + "loops": {} + }, + { + "index": 197, + "loops": {} + } + ] + } + } + ], + "47": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "66": [ + { + "index": 0, + "loops": {} + } + ] + }, + "node_values": { + "122": [ + "True", + "bool", + {} + ], + "126": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "127": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "128": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "130": [ + "range(0, 6)", + "range", + { + "len": 6 + } + ], + "131": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "132": { + "1": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "134": [ + "", + "MyClass", + { + "inner_calls": [ + "test_id_5" + ] + } + ], + "136": [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "3", + [ + "[3, 4, 5, ..., 100, 101, 102]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "3", + "int", + {} + ] + ], + [ + "1", + [ + "4", + "int", + {} + ] + ], + [ + "2", + [ + "5", + "int", + {} + ] + ], + [ + "97", + [ + "100", + "int", + {} + ] + ], + [ + "98", + [ + "101", + "int", + {} + ] + ], + [ + "99", + [ + "102", + "int", + {} + ] + ] + ] + ], + [ + "4", + [ + "[4, 5, 6, ..., 101, 102, 103]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "4", + "int", + {} + ] + ], + [ + "1", + [ + "5", + "int", + {} + ] + ], + [ + "2", + [ + "6", + "int", + {} + ] + ], + [ + "97", + [ + "101", + "int", + {} + ] + ], + [ + "98", + [ + "102", + "int", + {} + ] + ], + [ + "99", + [ + "103", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 192, 193, 194]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "97", + [ + "192", + "int", + {} + ] + ], + [ + "98", + [ + "193", + "int", + {} + ] + ], + [ + "99", + [ + "194", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 193, 194, 195]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "97", + [ + "193", + "int", + {} + ] + ], + [ + "98", + [ + "194", + "int", + {} + ] + ], + [ + "99", + [ + "195", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ], + "137": [ + "6", + "int", + {} + ], + "138": [ + "None", + "NoneType", + {} + ], + "139": [ + "None", + "NoneType", + {} + ], + "141": [ + "", + -2, + {} + ], + "142": [ + "None", + "NoneType", + {} + ], + "143": [ + "True", + "bool", + {} + ], + "144": [ + "True", + "bool", + {} + ], + "145": [ + "True", + "bool", + {} + ], + "151": [ + "True", + "bool", + {} + ], + "153": [ + "None", + "NoneType", + {} + ], + "154": [ + "True", + "bool", + {} + ], + "155": [ + "True", + "bool", + {} + ], + "156": [ + "ValueError", + -1, + {} + ], + "160": [ + "", + -2, + {} + ], + "162": { + "0": [ + "", + -2, + {} + ] + }, + "163": [ + "True", + "bool", + {} + ], + "166": [ + "True", + "bool", + {} + ], + "168": [ + "", + "generator", + {} + ], + "169": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_11" + ] + } + ], + "170": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_13" + ] + } + ], + "213": [ + "6", + "int", + { + "inner_calls": [ + "test_id_2" + ] + } + ], + "221": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "223": { + "0": [ + "range(0, 0)", + "range", + { + "len": 0 + } + ], + "1": [ + "range(0, 2)", + "range", + { + "len": 2 + } + ], + "2": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "3": [ + "range(0, 194)", + "range", + { + "len": 194 + } + ], + "4": [ + "range(0, 196)", + "range", + { + "len": 196 + } + ], + "5": [ + "range(0, 198)", + "range", + { + "len": 198 + } + ] + }, + "224": { + "1": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ] + }, + "2": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "3": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "4": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "5": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + } + }, + "225": { + "1": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ] + }, + "2": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "3": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "4": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "5": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + } + }, + "229": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "231": { + "1": [ + "False", + "bool", + {} + ], + "3": [ + "True", + "bool", + {} + ] + }, + "232": { + "3": [ + "", + -2, + {} + ] + }, + "234": [ + "", + "MyClass", + {} + ], + "236": [ + "", + "MyClass", + {} + ], + "237": [ + "", + "MyClass", + {} + ], + "239": { + "0": [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "95", + [ + "95", + "int", + {} + ] + ], + [ + "96", + [ + "96", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ], + "1": [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ], + "2": [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ], + "3": [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ], + "4": [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ], + "5": [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + }, + "240": [ + "", + -2, + {} + ], + "242": [ + ". at 0xABC>", + "generator", + {} + ], + "243": [ + "", + "function", + {} + ], + "244": [ + "{0, 1, 2, 3}", + "set", + { + "len": 4 + }, + [ + "<0>", + [ + "0", + "int", + {} + ] + ], + [ + "<1>", + [ + "1", + "int", + {} + ] + ], + [ + "<2>", + [ + "2", + "int", + {} + ] + ], + [ + "<3>", + [ + "3", + "int", + {} + ] + ] + ], + "245": [ + "", + "function", + {} + ], + "246": [ + "{0: 0}", + "dict", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ], + "247": [ + "", + "MyClass", + {}, + [ + "list", + [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ] + ] + ], + "248": [ + "", + "function", + {} + ], + "249": [ + "", + "SlotClass", + { + "inner_calls": [ + "test_id_8" + ] + }, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ], + "250": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "inner_calls": [ + "test_id_9" + ], + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ], + "252": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ], + "253": [ + "[1, 2, {'k': 23}]", + "list", + { + "inner_calls": [ + "test_id_10" + ], + "len": 3 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ] + ] + ], + "256": [ + "3", + "int", + {} + ], + "261": [ + "6", + "int", + {} + ], + "265": [ + "", + "function", + {} + ], + "269": [ + "2", + "int", + {} + ], + "272": [ + "(1, 2)", + "tuple", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ], + "275": [ + "ValueError()", + "ValueError", + {} + ], + "280": [ + "", + -2, + {} + ], + "281": [ + "None", + "NoneType", + {} + ], + "282": [ + "8", + "int", + {} + ], + "286": [ + "4", + "int", + {} + ], + "290": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "291": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "292": [ + "", + "generator", + {} + ], + "293": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "294": [ + "", + "generator", + {} + ], + "314": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "317": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "321": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "194", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "198", + "int", + {} + ] + }, + "322": { + "1": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ] + }, + "2": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "3": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "4": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "5": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + } + }, + "323": { + "1": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ] + }, + "2": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "3": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "4": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "5": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + } + }, + "325": { + "1": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "327": { + "0": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "328": { + "1": [ + "1", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "331": [ + "", + "type", + {}, + [ + "__add__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__enter__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__exit__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ], + "332": [ + "", + "type", + {}, + [ + "__add__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__enter__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__exit__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ], + "334": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "3", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "100", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "3", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "100", + "int", + {} + ], + "5": [ + "101", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "194", + "int", + {} + ], + "4": [ + "195", + "int", + {} + ], + "5": [ + "196", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "100", + "int", + {} + ], + "3": [ + "195", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "197", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "100", + "int", + {} + ], + "2": [ + "101", + "int", + {} + ], + "3": [ + "196", + "int", + {} + ], + "4": [ + "197", + "int", + {} + ], + "5": [ + "198", + "int", + {} + ] + } + }, + "335": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "337": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "339": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "340": [ + "", + -2, + {} + ], + "342": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "343": [ + "", + -2, + {} + ], + "345": { + "0": [ + "0", + "int", + {} + ] + }, + "346": { + "0": [ + "0", + "int", + {} + ] + }, + "347": [ + "", + -2, + {} + ], + "350": [ + "", + "MyClass", + {}, + [ + "list", + [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ] + ] + ], + "352": [ + "", + "SlotClass", + {}, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ], + "353": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "354": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "358": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "360": [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ], + "362": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "370": [ + "'1 + 2'", + "str", + { + "len": 5 + } + ], + "385": [ + "", + "function", + {} + ], + "386": [ + ". at 0xABC>", + "function", + {} + ], + "405": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[[]]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "2": [ + "[[], [1, 2]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", + "list", + { + "len": 97 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "94", + [ + "[94, 95, 96, ..., 279, 280, 281]", + "list", + { + "len": 188 + }, + [ + "0", + [ + "94", + "int", + {} + ] + ], + [ + "1", + [ + "95", + "int", + {} + ] + ], + [ + "2", + [ + "96", + "int", + {} + ] + ], + [ + "185", + [ + "279", + "int", + {} + ] + ], + [ + "186", + [ + "280", + "int", + {} + ] + ], + [ + "187", + [ + "281", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "187", + [ + "282", + "int", + {} + ] + ], + [ + "188", + [ + "283", + "int", + {} + ] + ], + [ + "189", + [ + "284", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "187", + [ + "282", + "int", + {} + ] + ], + [ + "188", + [ + "283", + "int", + {} + ] + ], + [ + "189", + [ + "284", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ], + [ + "193", + [ + "290", + "int", + {} + ] + ] + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ], + [ + "193", + [ + "290", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ], + [ + "194", + [ + "292", + "int", + {} + ] + ], + [ + "195", + [ + "293", + "int", + {} + ] + ] + ] + ] + ] + }, + "411": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "412": { + "1": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ] + }, + "2": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ] + }, + "3": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "4": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "5": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + } + }, + "413": { + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "3", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "5", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "288", + "int", + {} + ], + "4": [ + "289", + "int", + {} + ], + "5": [ + "290", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "100", + "int", + {} + ], + "3": [ + "291", + "int", + {} + ], + "4": [ + "292", + "int", + {} + ], + "5": [ + "293", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "100", + "int", + {} + ], + "2": [ + "101", + "int", + {} + ], + "3": [ + "294", + "int", + {} + ], + "4": [ + "295", + "int", + {} + ], + "5": [ + "296", + "int", + {} + ] + } + }, + "414": { + "1": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ] + }, + "2": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ] + }, + "3": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + }, + "4": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + }, + "5": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + } + }, + "415": { + "1": { + "0": [ + "[[], [1]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ] + ] + }, + "2": { + "0": [ + "[[], [1, 2], [2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ] + ] + }, + "3": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ] + ] + }, + "4": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ] + ] + }, + "5": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 294, 295, 296]", + "list", + { + "len": 198 + } + ] + ] + ] + } + }, + "416": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ] + }, + "417": { + "1": [ + "11.0", + "float", + {} + ], + "3": [ + "11.0", + "float", + {} + ] + }, + "422": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "1": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "3": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "4": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "5": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "424": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "0", + "int", + {} + ], + "2": [ + "0", + "int", + {} + ], + "3": [ + "0", + "int", + {} + ], + "4": [ + "0", + "int", + {} + ], + "5": [ + "0", + "int", + {} + ] + }, + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "1", + "int", + {} + ], + "3": [ + "1", + "int", + {} + ], + "4": [ + "1", + "int", + {} + ], + "5": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "2", + "int", + {} + ], + "4": [ + "2", + "int", + {} + ], + "5": [ + "2", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "97", + "int", + {} + ], + "2": [ + "97", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "97", + "int", + {} + ], + "5": [ + "97", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "98", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "98", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "426": { + "0": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "1": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "2": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "3": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "4": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "5": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ] + }, + "432": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "435": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "439": [ + "range(0, 1)", + "range", + { + "len": 1 + } + ], + "44": [ + "", + -2, + {} + ], + "441": [ + "", + "type", + {}, + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__init__", + [ + "", + "function", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__slots__", + [ + "('slot1',)", + "tuple", + { + "len": 1 + }, + [ + "0", + [ + "'slot1'", + "str", + { + "len": 5 + } + ] + ] + ] + ], + [ + "slot1", + [ + "", + "member_descriptor", + {} + ] + ] + ], + "444": [ + "range(0, 1000)", + "range", + { + "len": 1000 + } + ], + "448": [ + "range(0, 1000)", + "range", + { + "len": 1000 + } + ], + "45": [ + "", + -2, + {} + ], + "46": [ + "", + -2, + {} + ], + "47": [ + "", + -2, + {} + ], + "477": { + "1": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[1]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ] + ] + }, + "2": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[2]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ] + ], + "2": [ + "[2, 3]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ] + ], + "3": [ + "[2, 3, 4]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ] + ] + }, + "3": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[97]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ] + ], + "2": [ + "[97, 98]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ] + ], + "3": [ + "[97, 98, 99, ..., 285, 286, 287]", + "list", + { + "len": 191 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "188", + [ + "285", + "int", + {} + ] + ], + [ + "189", + [ + "286", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ] + ], + "4": [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "189", + [ + "286", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ] + ], + "5": [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ] + ] + }, + "4": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[98]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ] + ], + "2": [ + "[98, 99]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ] + ], + "3": [ + "[98, 99, 100, ..., 288, 289, 290]", + "list", + { + "len": 193 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "190", + [ + "288", + "int", + {} + ] + ], + [ + "191", + [ + "289", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ] + ], + "4": [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "191", + [ + "289", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ] + ], + "5": [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ], + [ + "194", + [ + "292", + "int", + {} + ] + ] + ] + }, + "5": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[99]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ] + ], + "2": [ + "[99, 100]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ] + ], + "3": [ + "[99, 100, 101, ..., 291, 292, 293]", + "list", + { + "len": 195 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "192", + [ + "291", + "int", + {} + ] + ], + [ + "193", + [ + "292", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ] + ], + "4": [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "193", + [ + "292", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ], + [ + "195", + [ + "294", + "int", + {} + ] + ] + ], + "5": [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ], + [ + "195", + [ + "294", + "int", + {} + ] + ], + [ + "196", + [ + "295", + "int", + {} + ] + ] + ] + } + }, + "479": { + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "2", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "97", + "int", + {} + ], + "2": [ + "97", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "97", + "int", + {} + ], + "5": [ + "97", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "98", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "98", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "48": [ + "", + -2, + {} + ], + "481": { + "1": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "3": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "191", + "int", + {} + ], + "4": [ + "192", + "int", + {} + ], + "5": [ + "193", + "int", + {} + ] + }, + "4": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "193", + "int", + {} + ], + "4": [ + "194", + "int", + {} + ], + "5": [ + "195", + "int", + {} + ] + }, + "5": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "195", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "197", + "int", + {} + ] + } + }, + "485": { + "0": [ + "ZeroDivisionError: division by zero", + -1, + {} + ], + "1": [ + "1.0", + "float", + {} + ], + "2": [ + "ZeroDivisionError: division by zero", + -1, + {} + ], + "3": [ + "1.0", + "float", + {} + ] + }, + "49": [ + "", + -2, + {} + ], + "50": [ + "", + -2, + {} + ], + "51": [ + "", + -2, + {} + ], + "52": [ + "", + -2, + {} + ], + "526": { + "1": { + "0": [ + "[[], []]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1]", + "list", + { + "len": 1 + } + ] + ] + ] + }, + "2": { + "0": [ + "[[], [1, 2], []]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4]", + "list", + { + "len": 3 + } + ] + ] + ] + }, + "3": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 285, 286, 287]", + "list", + { + "len": 191 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + } + ] + ] + ] + }, + "4": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 288, 289, 290]", + "list", + { + "len": 193 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + } + ] + ] + ] + }, + "5": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 291, 292, 293]", + "list", + { + "len": 195 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + } + ] + ] + ] + } + }, + "53": [ + "", + -2, + { + "inner_calls": [ + "test_id_6", + "test_id_7" + ] + } + ], + "533": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "0", + "int", + {} + ], + "3": [ + "1", + "int", + {} + ] + }, + "54": [ + "", + -2, + {} + ], + "546": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "55": [ + "", + -2, + {} + ], + "56": [ + "", + -2, + {} + ], + "57": [ + "", + -2, + {} + ], + "58": [ + "", + -2, + {} + ], + "59": [ + "", + -2, + {} + ], + "60": [ + "", + -2, + {} + ], + "61": [ + "", + -2, + {} + ], + "62": [ + "", + -2, + {} + ], + "63": [ + "", + -2, + {} + ], + "64": [ + "", + -2, + {} + ], + "65": [ + "", + -2, + {} + ], + "66": [ + "", + -2, + {} + ], + "67": [ + "", + -2, + {} + ], + "68": [ + "", + -2, + {} + ], + "69": [ + "", + -2, + {} + ], + "70": [ + "", + -2, + {} + ], + "71": [ + "", + -2, + {} + ], + "72": [ + "", + -2, + {} + ], + "73": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 65, + "start": 64, + "tree_index": 46 + }, + { + "end": 205, + "start": 204, + "tree_index": 47 + }, + { + "end": 1254, + "start": 1250, + "tree_index": 66 + }, + { + "end": 118, + "start": 117, + "tree_index": 128 + }, + { + "end": 438, + "start": 437, + "tree_index": 240 + }, + { + "end": 417, + "start": 416, + "tree_index": 335 + }, + { + "end": 471, + "start": 470, + "tree_index": 340 + }, + { + "end": 503, + "start": 502, + "tree_index": 343 + }, + { + "end": 539, + "start": 538, + "tree_index": 347 + } + ], + "node_loops": { + "127": [ + 46 + ], + "128": [ + 46 + ], + "131": [ + 47 + ], + "132": [ + 47 + ], + "162": [ + 66 + ], + "221": [ + 46 + ], + "223": [ + 46 + ], + "224": [ + 46, + 128 + ], + "225": [ + 46, + 128 + ], + "229": [ + 47 + ], + "231": [ + 47 + ], + "232": [ + 47 + ], + "239": [ + 240 + ], + "317": [ + 46 + ], + "320": [ + 46 + ], + "321": [ + 46 + ], + "322": [ + 46, + 128 + ], + "323": [ + 46, + 128 + ], + "325": [ + 47 + ], + "326": [ + 47 + ], + "327": [ + 47 + ], + "328": [ + 47 + ], + "334": [ + 240, + 335 + ], + "335": [ + 240 + ], + "339": [ + 340 + ], + "342": [ + 343 + ], + "345": [ + 347 + ], + "346": [ + 347 + ], + "405": [ + 46 + ], + "411": [ + 46 + ], + "412": [ + 46, + 128 + ], + "413": [ + 46, + 128 + ], + "414": [ + 46, + 128 + ], + "415": [ + 46, + 128 + ], + "416": [ + 47 + ], + "417": [ + 47 + ], + "422": [ + 240, + 335 + ], + "424": [ + 240, + 335 + ], + "426": [ + 240 + ], + "477": [ + 46, + 128 + ], + "479": [ + 46, + 128 + ], + "481": [ + 46, + 128 + ], + "485": [ + 47 + ], + "491": [ + 240 + ], + "526": [ + 46, + 128 + ], + "533": [ + 47 + ], + "546": [ + 47 + ] + }, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 40, + "start": 16, + "tree_index": 44 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 55, + "start": 46, + "tree_index": 45 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 194, + "start": 56, + "tree_index": 46 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 359, + "start": 196, + "tree_index": 47 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 390, + "start": 365, + "tree_index": 48 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 453, + "start": 395, + "tree_index": 49 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 484, + "start": 458, + "tree_index": 50 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 517, + "start": 489, + "tree_index": 51 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 553, + "start": 522, + "tree_index": 52 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 578, + "start": 554, + "tree_index": 53 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 605, + "start": 583, + "tree_index": 54 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 812, + "start": 611, + "tree_index": 55 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 880, + "start": 818, + "tree_index": 56 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 922, + "start": 886, + "tree_index": 57 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 933, + "start": 928, + "tree_index": 58 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 944, + "start": 938, + "tree_index": 59 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 962, + "start": 949, + "tree_index": 60 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 972, + "start": 967, + "tree_index": 61 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1002, + "start": 978, + "tree_index": 62 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1032, + "start": 1008, + "tree_index": 63 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1067, + "start": 1037, + "tree_index": 64 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1238, + "start": 1069, + "tree_index": 65 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 1269, + "start": 1240, + "tree_index": 66 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1307, + "start": 1275, + "tree_index": 67 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1321, + "start": 1313, + "tree_index": 68 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1331, + "start": 1326, + "tree_index": 69 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1349, + "start": 1336, + "tree_index": 70 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1364, + "start": 1355, + "tree_index": 71 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1381, + "start": 1369, + "tree_index": 72 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1398, + "start": 1386, + "tree_index": 73 + }, + { + "classes": [], + "depth": 3, + "end": 40, + "start": 23, + "tree_index": 122 + }, + { + "classes": [], + "depth": 3, + "end": 79, + "start": 69, + "tree_index": 126 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 104, + "start": 89, + "tree_index": 127 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 3, + "end": 194, + "start": 105, + "tree_index": 128 + }, + { + "classes": [], + "depth": 3, + "end": 217, + "start": 209, + "tree_index": 130 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 322, + "start": 219, + "tree_index": 131 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 359, + "start": 323, + "tree_index": 132 + }, + { + "classes": [], + "depth": 3, + "end": 390, + "start": 369, + "tree_index": 134 + }, + { + "classes": [], + "depth": 3, + "end": 453, + "start": 404, + "tree_index": 136 + }, + { + "classes": [], + "depth": 3, + "end": 484, + "start": 458, + "tree_index": 137 + }, + { + "classes": [], + "depth": 3, + "end": 517, + "start": 489, + "tree_index": 138 + }, + { + "classes": [], + "depth": 3, + "end": 553, + "start": 522, + "tree_index": 139 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 578, + "start": 574, + "tree_index": 141 + }, + { + "classes": [], + "depth": 3, + "end": 605, + "start": 583, + "tree_index": 142 + }, + { + "classes": [], + "depth": 3, + "end": 812, + "start": 618, + "tree_index": 143 + }, + { + "classes": [], + "depth": 3, + "end": 880, + "start": 825, + "tree_index": 144 + }, + { + "classes": [], + "depth": 3, + "end": 922, + "start": 893, + "tree_index": 145 + }, + { + "classes": [], + "depth": 3, + "end": 962, + "start": 956, + "tree_index": 151 + }, + { + "classes": [], + "depth": 3, + "end": 1002, + "start": 978, + "tree_index": 153 + }, + { + "classes": [], + "depth": 3, + "end": 1032, + "start": 1015, + "tree_index": 154 + }, + { + "classes": [], + "depth": 3, + "end": 1067, + "start": 1044, + "tree_index": 155 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1104, + "start": 1086, + "tree_index": 156 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1238, + "start": 1231, + "tree_index": 160 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1269, + "start": 1264, + "tree_index": 162 + }, + { + "classes": [], + "depth": 3, + "end": 1307, + "start": 1282, + "tree_index": 163 + }, + { + "classes": [], + "depth": 3, + "end": 1349, + "start": 1343, + "tree_index": 166 + }, + { + "classes": [], + "depth": 3, + "end": 1364, + "start": 1359, + "tree_index": 168 + }, + { + "classes": [], + "depth": 3, + "end": 1381, + "start": 1369, + "tree_index": 169 + }, + { + "classes": [], + "depth": 3, + "end": 1398, + "start": 1386, + "tree_index": 170 + }, + { + "classes": [], + "depth": 4, + "end": 35, + "start": 23, + "tree_index": 213 + }, + { + "classes": [], + "depth": 4, + "end": 74, + "start": 69, + "tree_index": 219 + }, + { + "classes": [], + "depth": 4, + "end": 104, + "start": 89, + "tree_index": 221 + }, + { + "classes": [], + "depth": 4, + "end": 134, + "start": 122, + "tree_index": 223 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 170, + "start": 148, + "tree_index": 224 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 194, + "start": 183, + "tree_index": 225 + }, + { + "classes": [], + "depth": 4, + "end": 214, + "start": 209, + "tree_index": 227 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 267, + "start": 244, + "tree_index": 229 + }, + { + "classes": [], + "depth": 4, + "end": 340, + "start": 334, + "tree_index": 231 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 359, + "start": 354, + "tree_index": 232 + }, + { + "classes": [], + "depth": 4, + "end": 378, + "start": 369, + "tree_index": 234 + }, + { + "classes": [], + "depth": 4, + "end": 390, + "start": 381, + "tree_index": 236 + }, + { + "classes": [], + "depth": 4, + "end": 396, + "start": 395, + "tree_index": 237 + }, + { + "classes": [], + "depth": 4, + "end": 432, + "start": 405, + "tree_index": 239 + }, + { + "classes": [ + "loop" + ], + "depth": 4, + "end": 452, + "start": 433, + "tree_index": 240 + }, + { + "classes": [], + "depth": 4, + "end": 461, + "start": 458, + "tree_index": 241 + }, + { + "classes": [], + "depth": 4, + "end": 484, + "start": 463, + "tree_index": 242 + }, + { + "classes": [], + "depth": 4, + "end": 494, + "start": 489, + "tree_index": 243 + }, + { + "classes": [], + "depth": 4, + "end": 516, + "start": 495, + "tree_index": 244 + }, + { + "classes": [], + "depth": 4, + "end": 527, + "start": 522, + "tree_index": 245 + }, + { + "classes": [], + "depth": 4, + "end": 552, + "start": 528, + "tree_index": 246 + }, + { + "classes": [], + "depth": 4, + "end": 564, + "start": 563, + "tree_index": 247 + }, + { + "classes": [], + "depth": 4, + "end": 588, + "start": 583, + "tree_index": 248 + }, + { + "classes": [], + "depth": 4, + "end": 604, + "start": 589, + "tree_index": 249 + }, + { + "classes": [], + "depth": 4, + "end": 729, + "start": 618, + "tree_index": 250 + }, + { + "classes": [], + "depth": 4, + "end": 812, + "start": 733, + "tree_index": 252 + }, + { + "classes": [], + "depth": 4, + "end": 859, + "start": 825, + "tree_index": 253 + }, + { + "classes": [], + "depth": 4, + "end": 917, + "start": 893, + "tree_index": 256 + }, + { + "classes": [], + "depth": 4, + "end": 957, + "start": 956, + "tree_index": 261 + }, + { + "classes": [], + "depth": 4, + "end": 983, + "start": 978, + "tree_index": 265 + }, + { + "classes": [], + "depth": 4, + "end": 1027, + "start": 1015, + "tree_index": 269 + }, + { + "classes": [], + "depth": 4, + "end": 1057, + "start": 1044, + "tree_index": 272 + }, + { + "classes": [], + "depth": 4, + "end": 1104, + "start": 1092, + "tree_index": 275 + }, + { + "classes": [], + "depth": 4, + "end": 1130, + "start": 1116, + "tree_index": 276 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1149, + "start": 1145, + "tree_index": 277 + }, + { + "classes": [], + "depth": 4, + "end": 1170, + "start": 1161, + "tree_index": 278 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1184, + "start": 1180, + "tree_index": 279 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1209, + "start": 1205, + "tree_index": 280 + }, + { + "classes": [], + "depth": 4, + "end": 1238, + "start": 1231, + "tree_index": 281 + }, + { + "classes": [], + "depth": 4, + "end": 1302, + "start": 1282, + "tree_index": 282 + }, + { + "classes": [], + "depth": 4, + "end": 1344, + "start": 1343, + "tree_index": 286 + }, + { + "classes": [], + "depth": 4, + "end": 1362, + "start": 1359, + "tree_index": 290 + }, + { + "classes": [], + "depth": 4, + "end": 1378, + "start": 1369, + "tree_index": 291 + }, + { + "classes": [], + "depth": 4, + "end": 1380, + "start": 1379, + "tree_index": 292 + }, + { + "classes": [], + "depth": 4, + "end": 1395, + "start": 1386, + "tree_index": 293 + }, + { + "classes": [], + "depth": 4, + "end": 1397, + "start": 1396, + "tree_index": 294 + }, + { + "classes": [], + "depth": 5, + "end": 32, + "start": 23, + "tree_index": 314 + }, + { + "classes": [], + "depth": 5, + "end": 100, + "start": 89, + "tree_index": 317 + }, + { + "classes": [], + "depth": 5, + "end": 127, + "start": 122, + "tree_index": 320 + }, + { + "classes": [], + "depth": 5, + "end": 133, + "start": 128, + "tree_index": 321 + }, + { + "classes": [], + "depth": 5, + "end": 170, + "start": 148, + "tree_index": 322 + }, + { + "classes": [], + "depth": 5, + "end": 194, + "start": 183, + "tree_index": 323 + }, + { + "classes": [], + "depth": 5, + "end": 267, + "start": 244, + "tree_index": 325 + }, + { + "classes": [], + "depth": 5, + "end": 300, + "start": 283, + "tree_index": 326 + }, + { + "classes": [ + "stmt" + ], + "depth": 5, + "end": 322, + "start": 314, + "tree_index": 327 + }, + { + "classes": [], + "depth": 5, + "end": 335, + "start": 334, + "tree_index": 328 + }, + { + "classes": [], + "depth": 5, + "end": 376, + "start": 369, + "tree_index": 331 + }, + { + "classes": [], + "depth": 5, + "end": 388, + "start": 381, + "tree_index": 332 + }, + { + "classes": [], + "depth": 5, + "end": 411, + "start": 406, + "tree_index": 334 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 431, + "start": 412, + "tree_index": 335 + }, + { + "classes": [], + "depth": 5, + "end": 452, + "start": 442, + "tree_index": 337 + }, + { + "classes": [], + "depth": 5, + "end": 465, + "start": 464, + "tree_index": 339 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 483, + "start": 466, + "tree_index": 340 + }, + { + "classes": [], + "depth": 5, + "end": 497, + "start": 496, + "tree_index": 342 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 515, + "start": 498, + "tree_index": 343 + }, + { + "classes": [], + "depth": 5, + "end": 530, + "start": 529, + "tree_index": 345 + }, + { + "classes": [], + "depth": 5, + "end": 533, + "start": 532, + "tree_index": 346 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 551, + "start": 534, + "tree_index": 347 + }, + { + "classes": [], + "depth": 5, + "end": 590, + "start": 589, + "tree_index": 350 + }, + { + "classes": [], + "depth": 5, + "end": 604, + "start": 593, + "tree_index": 352 + }, + { + "classes": [], + "depth": 5, + "end": 630, + "start": 618, + "tree_index": 353 + }, + { + "classes": [], + "depth": 5, + "end": 657, + "start": 640, + "tree_index": 354 + }, + { + "classes": [], + "depth": 5, + "end": 751, + "start": 734, + "tree_index": 358 + }, + { + "classes": [], + "depth": 5, + "end": 811, + "start": 782, + "tree_index": 360 + }, + { + "classes": [], + "depth": 5, + "end": 837, + "start": 825, + "tree_index": 362 + }, + { + "classes": [], + "depth": 5, + "end": 845, + "start": 838, + "tree_index": 363 + }, + { + "classes": [], + "depth": 5, + "end": 897, + "start": 893, + "tree_index": 369 + }, + { + "classes": [], + "depth": 5, + "end": 916, + "start": 898, + "tree_index": 370 + }, + { + "classes": [], + "depth": 5, + "end": 1056, + "start": 1054, + "tree_index": 377 + }, + { + "classes": [], + "depth": 5, + "end": 1102, + "start": 1092, + "tree_index": 382 + }, + { + "classes": [], + "depth": 5, + "end": 1236, + "start": 1231, + "tree_index": 385 + }, + { + "classes": [], + "depth": 5, + "end": 1298, + "start": 1283, + "tree_index": 386 + }, + { + "classes": [], + "depth": 6, + "end": 93, + "start": 89, + "tree_index": 405 + }, + { + "classes": [], + "depth": 6, + "end": 133, + "start": 132, + "tree_index": 411 + }, + { + "classes": [], + "depth": 6, + "end": 163, + "start": 148, + "tree_index": 412 + }, + { + "classes": [], + "depth": 6, + "end": 169, + "start": 164, + "tree_index": 413 + }, + { + "classes": [], + "depth": 6, + "end": 188, + "start": 183, + "tree_index": 414 + }, + { + "classes": [], + "depth": 6, + "end": 193, + "start": 189, + "tree_index": 415 + }, + { + "classes": [], + "depth": 6, + "end": 249, + "start": 244, + "tree_index": 416 + }, + { + "classes": [], + "depth": 6, + "end": 266, + "start": 250, + "tree_index": 417 + }, + { + "classes": [], + "depth": 6, + "end": 407, + "start": 406, + "tree_index": 422 + }, + { + "classes": [], + "depth": 6, + "end": 411, + "start": 410, + "tree_index": 424 + }, + { + "classes": [], + "depth": 6, + "end": 431, + "start": 421, + "tree_index": 426 + }, + { + "classes": [], + "depth": 6, + "end": 447, + "start": 442, + "tree_index": 428 + }, + { + "classes": [], + "depth": 6, + "end": 483, + "start": 475, + "tree_index": 432 + }, + { + "classes": [], + "depth": 6, + "end": 515, + "start": 507, + "tree_index": 435 + }, + { + "classes": [], + "depth": 6, + "end": 551, + "start": 543, + "tree_index": 439 + }, + { + "classes": [], + "depth": 6, + "end": 602, + "start": 593, + "tree_index": 441 + }, + { + "classes": [], + "depth": 6, + "end": 644, + "start": 640, + "tree_index": 443 + }, + { + "classes": [], + "depth": 6, + "end": 656, + "start": 645, + "tree_index": 444 + }, + { + "classes": [], + "depth": 6, + "end": 738, + "start": 734, + "tree_index": 447 + }, + { + "classes": [], + "depth": 6, + "end": 750, + "start": 739, + "tree_index": 448 + }, + { + "classes": [], + "depth": 6, + "end": 786, + "start": 782, + "tree_index": 449 + }, + { + "classes": [], + "depth": 6, + "end": 1298, + "start": 1293, + "tree_index": 473 + }, + { + "classes": [], + "depth": 7, + "end": 156, + "start": 148, + "tree_index": 477 + }, + { + "classes": [], + "depth": 7, + "end": 165, + "start": 164, + "tree_index": 479 + }, + { + "classes": [], + "depth": 7, + "end": 169, + "start": 168, + "tree_index": 481 + }, + { + "classes": [], + "depth": 7, + "end": 261, + "start": 250, + "tree_index": 485 + }, + { + "classes": [], + "depth": 7, + "end": 426, + "start": 421, + "tree_index": 491 + }, + { + "classes": [], + "depth": 7, + "end": 480, + "start": 475, + "tree_index": 495 + }, + { + "classes": [], + "depth": 7, + "end": 512, + "start": 507, + "tree_index": 498 + }, + { + "classes": [], + "depth": 7, + "end": 548, + "start": 543, + "tree_index": 501 + }, + { + "classes": [], + "depth": 7, + "end": 650, + "start": 645, + "tree_index": 505 + }, + { + "classes": [], + "depth": 7, + "end": 744, + "start": 739, + "tree_index": 510 + }, + { + "classes": [], + "depth": 7, + "end": 1294, + "start": 1293, + "tree_index": 523 + }, + { + "classes": [], + "depth": 8, + "end": 152, + "start": 148, + "tree_index": 526 + }, + { + "classes": [], + "depth": 8, + "end": 260, + "start": 255, + "tree_index": 533 + }, + { + "classes": [], + "depth": 9, + "end": 256, + "start": 255, + "tree_index": 546 + } + ] + }, + "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n sum (n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", + "lineno": 63, + "name": "main" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "3" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "3", + "int", + {} + ], + "177": [ + "3", + "int", + {} + ], + "179": [ + "2", + "int", + { + "inner_calls": [ + "test_id_3" + ] + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "298": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "299": [ + "2", + "int", + {} + ], + "395": [ + "3", + "int", + {} + ], + "78": [ + "False", + "bool", + {} + ], + "80": [ + "6", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "6", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "2" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "2", + "int", + {} + ], + "177": [ + "2", + "int", + {} + ], + "179": [ + "1", + "int", + { + "inner_calls": [ + "test_id_4" + ] + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "298": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "299": [ + "1", + "int", + {} + ], + "395": [ + "2", + "int", + {} + ], + "78": [ + "False", + "bool", + {} + ], + "80": [ + "2", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "2", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "1" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "1", + "int", + {} + ], + "19": [ + "", + -2, + {} + ], + "78": [ + "True", + "bool", + {} + ], + "79": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "1", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "other", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "114": [ + "", + -2, + {} + ], + "204": [ + "", + "MyClass", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 46, + "start": 34, + "tree_index": 114 + }, + { + "classes": [], + "depth": 4, + "end": 46, + "start": 41, + "tree_index": 204 + } + ] + }, + "html_body": " @eye\n def __add__(self, other):\n return other", + "lineno": 50, + "name": "MyClass.__add__" + }, + "return_value": "", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "117": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 33, + "start": 29, + "tree_index": 117 + } + ] + }, + "html_body": " @eye\n def __enter__(self):\n pass", + "lineno": 54, + "name": "MyClass.__enter__" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "exc_type", + "None" + ], + [ + "exc_val", + "None" + ], + [ + "exc_tb", + "None" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "120": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 59, + "start": 55, + "tree_index": 120 + } + ] + }, + "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", + "lineno": 58, + "name": "MyClass.__exit__" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "other", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "114": [ + "", + -2, + {} + ], + "204": [ + "", + "SlotClass", + {}, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 46, + "start": 34, + "tree_index": 114 + }, + { + "classes": [], + "depth": 4, + "end": 46, + "start": 41, + "tree_index": 204 + } + ] + }, + "html_body": " @eye\n def __add__(self, other):\n return other", + "lineno": 50, + "name": "MyClass.__add__" + }, + "return_value": "", + "traceback": null + }, + { + "arguments": [ + [ + "pos1", + "[0, 1, 2, ..., 997, 998, 999]" + ], + [ + "pos2", + "'hello'" + ], + [ + "key1", + "3" + ], + [ + "key2", + "8" + ], + [ + "args", + "()" + ], + [ + "kwargs", + "{'kwarg1': {'key': 'value'}}" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "186": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "187": [ + "'hello'", + "str", + { + "len": 5 + } + ], + "188": [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ], + "28": [ + "", + -2, + {} + ], + "96": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 94, + "start": 67, + "tree_index": 28 + }, + { + "classes": [], + "depth": 3, + "end": 94, + "start": 74, + "tree_index": 96 + }, + { + "classes": [], + "depth": 4, + "end": 79, + "start": 75, + "tree_index": 186 + }, + { + "classes": [], + "depth": 4, + "end": 85, + "start": 81, + "tree_index": 187 + }, + { + "classes": [], + "depth": 4, + "end": 93, + "start": 87, + "tree_index": 188 + } + ] + }, + "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", + "lineno": 26, + "name": "complex_args" + }, + "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "traceback": null + }, + { + "arguments": [ + [ + "pos1", + "1" + ], + [ + "pos2", + "2" + ], + [ + "key1", + "3" + ], + [ + "key2", + "4" + ], + [ + "args", + "()" + ], + [ + "kwargs", + "{'k': 23}" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "186": [ + "1", + "int", + {} + ], + "187": [ + "2", + "int", + {} + ], + "188": [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ], + "28": [ + "", + -2, + {} + ], + "96": [ + "[1, 2, {'k': 23}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 94, + "start": 67, + "tree_index": 28 + }, + { + "classes": [], + "depth": 3, + "end": 94, + "start": 74, + "tree_index": 96 + }, + { + "classes": [], + "depth": 4, + "end": 79, + "start": 75, + "tree_index": 186 + }, + { + "classes": [], + "depth": 4, + "end": 85, + "start": 81, + "tree_index": 187 + }, + { + "classes": [], + "depth": 4, + "end": 93, + "start": 87, + "tree_index": 188 + } + ] + }, + "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", + "lineno": 26, + "name": "complex_args" + }, + "return_value": "[1, 2, {'k': 23}]", + "traceback": null + }, + { + "arguments": [ + [ + "g", + "" + ] + ], + "data": { + "loop_iterations": { + "34": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "104": [ + "", + "islice", + {} + ], + "105": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "195": [ + "", + "type", + {}, + [ + "__doc__", + [ + "'islice(iterab...s an iterator.'", + "str", + { + "len": 453 + } + ] + ], + [ + "__getattribute__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__iter__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__new__", + [ + "", + "builtin_function_or_method", + {} + ] + ], + [ + "__next__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__reduce__", + [ + "", + "method_descriptor", + {} + ] + ], + [ + "__setstate__", + [ + "", + "method_descriptor", + {} + ] + ] + ], + "196": [ + "", + "generator", + {} + ], + "198": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ] + }, + "309": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ] + }, + "310": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "34": [ + "", + -2, + { + "inner_calls": [ + "test_id_12" + ] + } + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 27, + "start": 26, + "tree_index": 34 + } + ], + "node_loops": { + "105": [ + 34 + ], + "198": [ + 34 + ], + "309": [ + 34 + ], + "310": [ + 34 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 61, + "start": 18, + "tree_index": 34 + }, + { + "classes": [], + "depth": 3, + "end": 43, + "start": 31, + "tree_index": 104 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 61, + "start": 53, + "tree_index": 105 + }, + { + "classes": [], + "depth": 4, + "end": 37, + "start": 31, + "tree_index": 195 + }, + { + "classes": [], + "depth": 4, + "end": 39, + "start": 38, + "tree_index": 196 + }, + { + "classes": [], + "depth": 4, + "end": 61, + "start": 53, + "tree_index": 198 + }, + { + "classes": [], + "depth": 5, + "end": 58, + "start": 53, + "tree_index": 309 + }, + { + "classes": [], + "depth": 5, + "end": 60, + "start": 59, + "tree_index": 310 + } + ] + }, + "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", + "lineno": 37, + "name": "use_gen_1" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [], + "data": { + "loop_iterations": { + "31": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + }, + { + "index": 4, + "loops": {} + }, + { + "index": 5, + "loops": {} + } + ] + }, + "node_values": { + "100": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "193": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "306": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ], + "4": [ + "4", + "int", + {} + ], + "5": [ + "5", + "int", + {} + ] + }, + "31": [ + "", + -2, + {} + ], + "99": [ + "range(0, 6)", + "range", + { + "len": 6 + } + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 20, + "start": 19, + "tree_index": 31 + } + ], + "node_loops": { + "100": [ + 31 + ], + "193": [ + 31 + ], + "306": [ + 31 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 49, + "start": 11, + "tree_index": 31 + }, + { + "classes": [], + "depth": 3, + "end": 32, + "start": 24, + "tree_index": 99 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 42, + "tree_index": 100 + }, + { + "classes": [], + "depth": 4, + "end": 29, + "start": 24, + "tree_index": 191 + }, + { + "classes": [], + "depth": 4, + "end": 49, + "start": 42, + "tree_index": 193 + }, + { + "classes": [], + "depth": 5, + "end": 49, + "start": 48, + "tree_index": 306 + } + ] + }, + "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", + "lineno": 31, + "name": "gen" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "g", + "" + ] + ], + "data": { + "loop_iterations": { + "37": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "109": [ + "", + "generator", + {} + ], + "110": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "201": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ] + }, + "311": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ] + }, + "312": { + "0": [ + "3", + "int", + {} + ], + "1": [ + "4", + "int", + {} + ], + "2": [ + "5", + "int", + {} + ] + }, + "37": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 27, + "start": 26, + "tree_index": 37 + } + ], + "node_loops": { + "110": [ + 37 + ], + "201": [ + 37 + ], + "311": [ + 37 + ], + "312": [ + 37 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 50, + "start": 18, + "tree_index": 37 + }, + { + "classes": [], + "depth": 3, + "end": 32, + "start": 31, + "tree_index": 109 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 50, + "start": 42, + "tree_index": 110 + }, + { + "classes": [], + "depth": 4, + "end": 50, + "start": 42, + "tree_index": 201 + }, + { + "classes": [], + "depth": 5, + "end": 47, + "start": 42, + "tree_index": 311 + }, + { + "classes": [], + "depth": 5, + "end": 49, + "start": 48, + "tree_index": 312 + } + ] + }, + "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", + "lineno": 43, + "name": "use_gen_2" + }, + "return_value": "None", + "traceback": null + } +] \ No newline at end of file diff --git a/tests/golden-files/3.10/traced.json b/tests/golden-files/3.10/traced.json new file mode 100644 index 0000000..527c16c --- /dev/null +++ b/tests/golden-files/3.10/traced.json @@ -0,0 +1,1785 @@ +[ + { + "arguments": [], + "data": { + "loop_iterations": {}, + "node_values": { + "1": [ + "", + -2, + {} + ], + "13": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_15" + ] + } + ], + "2": [ + "", + -2, + {} + ], + "27": [ + "", + "function", + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "node_loops": { + "103": [ + 104 + ], + "105": [ + 82 + ], + "117": [ + 100, + 118 + ], + "118": [ + 100 + ], + "121": [ + 104 + ], + "123": [ + 104 + ], + "127": [ + 82 + ], + "136": [ + 100, + 118 + ], + "140": [ + 100 + ], + "150": [ + 82 + ], + "152": [ + 82 + ], + "157": [ + 100 + ], + "158": [ + 100 + ], + "34": [ + 19 + ], + "53": [ + 19 + ], + "72": [ + 19 + ], + "73": [ + 19 + ], + "81": [ + 82 + ], + "95": [ + 19 + ], + "97": [ + 19 + ], + "99": [ + 100 + ] + } + }, + "html_body": "import birdseye.trace_module_deep\n\n\ndef deco(f):\n return f\n\n\ndef m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()\n\n\nm()", + "lineno": 1, + "name": "$$__FILE__$$" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [], + "data": { + "loop_iterations": { + "100": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": { + "118": [ + { + "index": 0, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "118": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + } + ] + } + } + ], + "19": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ], + "82": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "10": [ + "", + -2, + {} + ], + "100": [ + "", + -2, + {} + ], + "105": { + "0": [ + ".A.. at 0xABC>", + "function", + {} + ], + "1": [ + ".A.. at 0xABC>", + "function", + {} + ], + "2": [ + ".A.. at 0xABC>", + "function", + {} + ] + }, + "108": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "11": [ + "", + -2, + {} + ], + "113": [ + ".A object at 0xABC>", + "m..A", + {} + ], + "117": { + "1": { + "0": [ + "0", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ] + } + }, + "118": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "12": [ + "", + -2, + {} + ], + "120": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "135": [ + ".A'>", + "type", + {}, + [ + "B", + [ + ".A.B'>", + "type", + {}, + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.traced'", + "str", + { + "len": 19 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.traced'", + "str", + { + "len": 19 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "bar", + [ + ".A.bar at 0xABC>", + "function", + {} + ] + ], + [ + "foo", + [ + ".A.foo at 0xABC>", + "function", + {} + ] + ], + [ + "i", + [ + "2", + "int", + {} + ] + ] + ], + "136": { + "1": { + "0": [ + "0", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + } + }, + "140": { + "0": [ + "range(0, 0)", + "range", + { + "len": 0 + } + ], + "1": [ + "range(0, 1)", + "range", + { + "len": 1 + } + ], + "2": [ + "range(0, 2)", + "range", + { + "len": 2 + } + ] + }, + "158": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "18": [ + "'9'", + "str", + { + "len": 1 + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "21": [ + "", + -2, + {} + ], + "22": [ + "", + -2, + {} + ], + "23": [ + "", + -2, + {} + ], + "24": [ + "", + -2, + { + "inner_calls": [ + "test_id_16" + ] + } + ], + "25": [ + "", + -2, + {} + ], + "26": [ + "4", + "int", + { + "inner_calls": [ + "test_id_17" + ] + } + ], + "31": [ + "9", + "int", + {} + ], + "33": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "34": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "35": [ + "", + -2, + {} + ], + "36": [ + "9", + "int", + {} + ], + "37": [ + "[0, 8, 16]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "8", + "int", + {} + ] + ], + [ + "2", + [ + "16", + "int", + {} + ] + ] + ], + "38": [ + "'{8, 9, 7}'", + "str", + { + "len": 9 + } + ], + "43": [ + "", + "function", + {} + ], + "46": [ + ".A.bar of .A object at 0xABC>>", + "method", + {} + ], + "53": { + "0": [ + "'0'", + "str", + { + "len": 1 + } + ], + "1": [ + "'1'", + "str", + { + "len": 1 + } + ], + "2": [ + "'4'", + "str", + { + "len": 1 + } + ] + }, + "54": [ + "'[[], [0], [0, 2]]'", + "str", + { + "len": 17 + } + ], + "55": [ + ".A. at 0xABC>", + "function", + {} + ], + "57": [ + ".A. at 0xABC>", + "function", + {} + ], + "60": [ + "{8, 9, 7}", + "set", + { + "len": 3 + }, + [ + "<0>", + [ + "8", + "int", + {} + ] + ], + [ + "<1>", + [ + "9", + "int", + {} + ] + ], + [ + "<2>", + [ + "7", + "int", + {} + ] + ] + ], + "69": [ + ".A object at 0xABC>", + "m..A", + {} + ], + "73": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ] + }, + "75": [ + "[[], [0], [0, 2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[0]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[0, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ] + ], + "81": { + "0": [ + "7", + "int", + {} + ], + "1": [ + "8", + "int", + {} + ], + "2": [ + "9", + "int", + {} + ] + }, + "82": [ + "", + -2, + {} + ], + "9": [ + "", + -2, + {} + ], + "93": [ + ".A.foo of .A object at 0xABC>>", + "method", + {} + ], + "95": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "97": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "99": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[0]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ], + "2": [ + "[0, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + } + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 61, + "start": 60, + "tree_index": 19 + }, + { + "end": 314, + "start": 313, + "tree_index": 82 + }, + { + "end": 181, + "start": 180, + "tree_index": 100 + }, + { + "end": 257, + "start": 256, + "tree_index": 104 + }, + { + "end": 145, + "start": 144, + "tree_index": 118 + } + ], + "node_loops": { + "103": [ + 104 + ], + "105": [ + 82 + ], + "117": [ + 100, + 118 + ], + "118": [ + 100 + ], + "121": [ + 104 + ], + "123": [ + 104 + ], + "127": [ + 82 + ], + "136": [ + 100, + 118 + ], + "140": [ + 100 + ], + "150": [ + 82 + ], + "152": [ + 82 + ], + "157": [ + 100 + ], + "158": [ + 100 + ], + "34": [ + 19 + ], + "53": [ + 19 + ], + "72": [ + 19 + ], + "73": [ + 19 + ], + "81": [ + 82 + ], + "95": [ + 19 + ], + "97": [ + 19 + ], + "99": [ + 100 + ] + }, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 1, + "end": 509, + "start": 0, + "tree_index": 3 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 20, + "start": 13, + "tree_index": 9 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 33, + "start": 25, + "tree_index": 10 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 488, + "start": 35, + "tree_index": 11 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 509, + "start": 494, + "tree_index": 12 + }, + { + "classes": [], + "depth": 3, + "end": 33, + "start": 25, + "tree_index": 18 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 3, + "end": 97, + "start": 48, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 195, + "start": 99, + "tree_index": 20 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 225, + "start": 205, + "tree_index": 21 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 274, + "start": 234, + "tree_index": 22 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 328, + "start": 283, + "tree_index": 23 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 439, + "start": 330, + "tree_index": 24 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 488, + "start": 441, + "tree_index": 25 + }, + { + "classes": [], + "depth": 3, + "end": 509, + "start": 494, + "tree_index": 26 + }, + { + "classes": [], + "depth": 4, + "end": 28, + "start": 25, + "tree_index": 30 + }, + { + "classes": [], + "depth": 4, + "end": 32, + "start": 29, + "tree_index": 31 + }, + { + "classes": [], + "depth": 4, + "end": 73, + "start": 65, + "tree_index": 33 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 97, + "start": 87, + "tree_index": 34 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 195, + "start": 128, + "tree_index": 35 + }, + { + "classes": [], + "depth": 4, + "end": 225, + "start": 205, + "tree_index": 36 + }, + { + "classes": [], + "depth": 4, + "end": 274, + "start": 234, + "tree_index": 37 + }, + { + "classes": [], + "depth": 4, + "end": 328, + "start": 283, + "tree_index": 38 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 388, + "start": 379, + "tree_index": 40 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 415, + "start": 401, + "tree_index": 41 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 439, + "start": 428, + "tree_index": 42 + }, + { + "classes": [], + "depth": 4, + "end": 343, + "start": 339, + "tree_index": 43 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 488, + "start": 476, + "tree_index": 45 + }, + { + "classes": [], + "depth": 4, + "end": 507, + "start": 494, + "tree_index": 46 + }, + { + "classes": [], + "depth": 5, + "end": 70, + "start": 65, + "tree_index": 51 + }, + { + "classes": [], + "depth": 5, + "end": 97, + "start": 87, + "tree_index": 53 + }, + { + "classes": [], + "depth": 5, + "end": 195, + "start": 128, + "tree_index": 54 + }, + { + "classes": [], + "depth": 5, + "end": 218, + "start": 206, + "tree_index": 55 + }, + { + "classes": [], + "depth": 5, + "end": 270, + "start": 235, + "tree_index": 57 + }, + { + "classes": [], + "depth": 5, + "end": 286, + "start": 283, + "tree_index": 59 + }, + { + "classes": [], + "depth": 5, + "end": 327, + "start": 287, + "tree_index": 60 + }, + { + "classes": [], + "depth": 5, + "end": 388, + "start": 383, + "tree_index": 63 + }, + { + "classes": [], + "depth": 5, + "end": 415, + "start": 401, + "tree_index": 64 + }, + { + "classes": [], + "depth": 5, + "end": 439, + "start": 435, + "tree_index": 65 + }, + { + "classes": [], + "depth": 5, + "end": 488, + "start": 483, + "tree_index": 68 + }, + { + "classes": [], + "depth": 5, + "end": 503, + "start": 494, + "tree_index": 69 + }, + { + "classes": [], + "depth": 6, + "end": 90, + "start": 87, + "tree_index": 72 + }, + { + "classes": [], + "depth": 6, + "end": 96, + "start": 91, + "tree_index": 73 + }, + { + "classes": [], + "depth": 6, + "end": 131, + "start": 128, + "tree_index": 74 + }, + { + "classes": [], + "depth": 6, + "end": 194, + "start": 132, + "tree_index": 75 + }, + { + "classes": [], + "depth": 6, + "end": 270, + "start": 245, + "tree_index": 79 + }, + { + "classes": [], + "depth": 6, + "end": 308, + "start": 288, + "tree_index": 81 + }, + { + "classes": [ + "loop" + ], + "depth": 6, + "end": 326, + "start": 309, + "tree_index": 82 + }, + { + "classes": [], + "depth": 6, + "end": 404, + "start": 401, + "tree_index": 87 + }, + { + "classes": [], + "depth": 6, + "end": 414, + "start": 405, + "tree_index": 88 + }, + { + "classes": [], + "depth": 6, + "end": 501, + "start": 494, + "tree_index": 93 + }, + { + "classes": [], + "depth": 7, + "end": 92, + "start": 91, + "tree_index": 95 + }, + { + "classes": [], + "depth": 7, + "end": 96, + "start": 95, + "tree_index": 97 + }, + { + "classes": [], + "depth": 7, + "end": 158, + "start": 133, + "tree_index": 99 + }, + { + "classes": [ + "loop" + ], + "depth": 7, + "end": 193, + "start": 176, + "tree_index": 100 + }, + { + "classes": [], + "depth": 7, + "end": 251, + "start": 246, + "tree_index": 103 + }, + { + "classes": [ + "loop" + ], + "depth": 7, + "end": 269, + "start": 252, + "tree_index": 104 + }, + { + "classes": [], + "depth": 7, + "end": 304, + "start": 289, + "tree_index": 105 + }, + { + "classes": [], + "depth": 7, + "end": 326, + "start": 318, + "tree_index": 108 + }, + { + "classes": [], + "depth": 7, + "end": 410, + "start": 405, + "tree_index": 110 + }, + { + "classes": [], + "depth": 7, + "end": 414, + "start": 413, + "tree_index": 112 + }, + { + "classes": [], + "depth": 7, + "end": 497, + "start": 494, + "tree_index": 113 + }, + { + "classes": [], + "depth": 8, + "end": 139, + "start": 134, + "tree_index": 117 + }, + { + "classes": [ + "loop" + ], + "depth": 8, + "end": 157, + "start": 140, + "tree_index": 118 + }, + { + "classes": [], + "depth": 8, + "end": 193, + "start": 185, + "tree_index": 120 + }, + { + "classes": [], + "depth": 8, + "end": 247, + "start": 246, + "tree_index": 121 + }, + { + "classes": [], + "depth": 8, + "end": 251, + "start": 250, + "tree_index": 123 + }, + { + "classes": [], + "depth": 8, + "end": 269, + "start": 261, + "tree_index": 125 + }, + { + "classes": [], + "depth": 8, + "end": 304, + "start": 299, + "tree_index": 127 + }, + { + "classes": [], + "depth": 8, + "end": 323, + "start": 318, + "tree_index": 129 + }, + { + "classes": [], + "depth": 8, + "end": 495, + "start": 494, + "tree_index": 135 + }, + { + "classes": [], + "depth": 9, + "end": 135, + "start": 134, + "tree_index": 136 + }, + { + "classes": [], + "depth": 9, + "end": 157, + "start": 149, + "tree_index": 140 + }, + { + "classes": [], + "depth": 9, + "end": 190, + "start": 185, + "tree_index": 142 + }, + { + "classes": [], + "depth": 9, + "end": 266, + "start": 261, + "tree_index": 147 + }, + { + "classes": [], + "depth": 9, + "end": 300, + "start": 299, + "tree_index": 150 + }, + { + "classes": [], + "depth": 9, + "end": 304, + "start": 303, + "tree_index": 152 + }, + { + "classes": [], + "depth": 10, + "end": 154, + "start": 149, + "tree_index": 157 + }, + { + "classes": [], + "depth": 10, + "end": 156, + "start": 155, + "tree_index": 158 + } + ] + }, + "html_body": "def m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()", + "lineno": 8, + "name": "m" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "f", + ".A.foo at 0xABC>" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "15": [ + ".A.foo at 0xABC>", + "function", + {} + ], + "7": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 1, + "end": 25, + "start": 0, + "tree_index": 2 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 25, + "start": 17, + "tree_index": 7 + }, + { + "classes": [], + "depth": 3, + "end": 25, + "start": 24, + "tree_index": 15 + } + ] + }, + "html_body": "def deco(f):\n return f", + "lineno": 4, + "name": "deco" + }, + "return_value": ".A.foo at 0xABC>", + "traceback": null + }, + { + "arguments": [ + [ + "self", + ".A object at 0xABC>" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "45": [ + "", + -2, + {} + ], + "68": [ + "4", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 39, + "start": 27, + "tree_index": 45 + }, + { + "classes": [], + "depth": 5, + "end": 39, + "start": 34, + "tree_index": 68 + } + ] + }, + "html_body": " def bar(self):\n return 1 + 3", + "lineno": 30, + "name": "bar" + }, + "return_value": "4", + "traceback": null + } +] \ No newline at end of file diff --git a/tests/golden-files/3.11/gold.json b/tests/golden-files/3.11/gold.json new file mode 100644 index 0000000..b770743 --- /dev/null +++ b/tests/golden-files/3.11/gold.json @@ -0,0 +1,13887 @@ +[ + { + "arguments": [], + "data": { + "loop_iterations": { + "240": [ + { + "index": 0, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 1, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 97, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 98, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 99, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + } + ], + "340": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "343": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "347": [ + { + "index": 0, + "loops": {} + } + ], + "46": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ] + } + }, + { + "index": 97, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 191, + "loops": {} + }, + { + "index": 192, + "loops": {} + }, + { + "index": 193, + "loops": {} + } + ] + } + }, + { + "index": 98, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 193, + "loops": {} + }, + { + "index": 194, + "loops": {} + }, + { + "index": 195, + "loops": {} + } + ] + } + }, + { + "index": 99, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 195, + "loops": {} + }, + { + "index": 196, + "loops": {} + }, + { + "index": 197, + "loops": {} + } + ] + } + } + ], + "47": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "66": [ + { + "index": 0, + "loops": {} + } + ] + }, + "node_values": { + "122": [ + "True", + "bool", + {} + ], + "126": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "127": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "128": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "130": [ + "range(0, 6)", + "range", + { + "len": 6 + } + ], + "131": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "132": { + "1": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "134": [ + "", + "MyClass", + { + "inner_calls": [ + "test_id_5" + ] + } + ], + "136": [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "3", + [ + "[3, 4, 5, ..., 100, 101, 102]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "3", + "int", + {} + ] + ], + [ + "1", + [ + "4", + "int", + {} + ] + ], + [ + "2", + [ + "5", + "int", + {} + ] + ], + [ + "97", + [ + "100", + "int", + {} + ] + ], + [ + "98", + [ + "101", + "int", + {} + ] + ], + [ + "99", + [ + "102", + "int", + {} + ] + ] + ] + ], + [ + "4", + [ + "[4, 5, 6, ..., 101, 102, 103]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "4", + "int", + {} + ] + ], + [ + "1", + [ + "5", + "int", + {} + ] + ], + [ + "2", + [ + "6", + "int", + {} + ] + ], + [ + "97", + [ + "101", + "int", + {} + ] + ], + [ + "98", + [ + "102", + "int", + {} + ] + ], + [ + "99", + [ + "103", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 192, 193, 194]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "97", + [ + "192", + "int", + {} + ] + ], + [ + "98", + [ + "193", + "int", + {} + ] + ], + [ + "99", + [ + "194", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 193, 194, 195]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "97", + [ + "193", + "int", + {} + ] + ], + [ + "98", + [ + "194", + "int", + {} + ] + ], + [ + "99", + [ + "195", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ], + "137": [ + "6", + "int", + {} + ], + "138": [ + "None", + "NoneType", + {} + ], + "139": [ + "None", + "NoneType", + {} + ], + "141": [ + "", + -2, + {} + ], + "142": [ + "None", + "NoneType", + {} + ], + "143": [ + "True", + "bool", + {} + ], + "144": [ + "True", + "bool", + {} + ], + "145": [ + "True", + "bool", + {} + ], + "151": [ + "True", + "bool", + {} + ], + "153": [ + "None", + "NoneType", + {} + ], + "154": [ + "True", + "bool", + {} + ], + "155": [ + "True", + "bool", + {} + ], + "156": [ + "ValueError", + -1, + {} + ], + "160": [ + "", + -2, + {} + ], + "162": { + "0": [ + "", + -2, + {} + ] + }, + "163": [ + "True", + "bool", + {} + ], + "166": [ + "True", + "bool", + {} + ], + "168": [ + "", + "generator", + {} + ], + "169": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_11" + ] + } + ], + "170": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_13" + ] + } + ], + "213": [ + "6", + "int", + { + "inner_calls": [ + "test_id_2" + ] + } + ], + "221": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "223": { + "0": [ + "range(0, 0)", + "range", + { + "len": 0 + } + ], + "1": [ + "range(0, 2)", + "range", + { + "len": 2 + } + ], + "2": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "3": [ + "range(0, 194)", + "range", + { + "len": 194 + } + ], + "4": [ + "range(0, 196)", + "range", + { + "len": 196 + } + ], + "5": [ + "range(0, 198)", + "range", + { + "len": 198 + } + ] + }, + "224": { + "1": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ] + }, + "2": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "3": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "4": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "5": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + } + }, + "225": { + "1": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ] + }, + "2": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "3": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "4": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "5": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + } + }, + "229": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "231": { + "1": [ + "False", + "bool", + {} + ], + "3": [ + "True", + "bool", + {} + ] + }, + "232": { + "3": [ + "", + -2, + {} + ] + }, + "234": [ + "", + "MyClass", + {} + ], + "236": [ + "", + "MyClass", + {} + ], + "237": [ + "", + "MyClass", + {} + ], + "239": { + "0": [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "95", + [ + "95", + "int", + {} + ] + ], + [ + "96", + [ + "96", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ], + "1": [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ], + "2": [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ], + "3": [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ], + "4": [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ], + "5": [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + }, + "240": [ + "", + -2, + {} + ], + "242": [ + ". at 0xABC>", + "generator", + {} + ], + "243": [ + "", + "function", + {} + ], + "244": [ + "{0, 1, 2, 3}", + "set", + { + "len": 4 + }, + [ + "<0>", + [ + "0", + "int", + {} + ] + ], + [ + "<1>", + [ + "1", + "int", + {} + ] + ], + [ + "<2>", + [ + "2", + "int", + {} + ] + ], + [ + "<3>", + [ + "3", + "int", + {} + ] + ] + ], + "245": [ + "", + "function", + {} + ], + "246": [ + "{0: 0}", + "dict", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ], + "247": [ + "", + "MyClass", + {}, + [ + "list", + [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ] + ] + ], + "248": [ + "", + "function", + {} + ], + "249": [ + "", + "SlotClass", + { + "inner_calls": [ + "test_id_8" + ] + }, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ], + "250": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "inner_calls": [ + "test_id_9" + ], + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ], + "252": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ], + "253": [ + "[1, 2, {'k': 23}]", + "list", + { + "inner_calls": [ + "test_id_10" + ], + "len": 3 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ] + ] + ], + "256": [ + "3", + "int", + {} + ], + "261": [ + "6", + "int", + {} + ], + "265": [ + "", + "function", + {} + ], + "269": [ + "2", + "int", + {} + ], + "272": [ + "(1, 2)", + "tuple", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ], + "275": [ + "ValueError()", + "ValueError", + {} + ], + "280": [ + "", + -2, + {} + ], + "281": [ + "None", + "NoneType", + {} + ], + "282": [ + "8", + "int", + {} + ], + "286": [ + "4", + "int", + {} + ], + "290": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "291": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "292": [ + "", + "generator", + {} + ], + "293": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "294": [ + "", + "generator", + {} + ], + "314": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "317": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "321": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "194", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "198", + "int", + {} + ] + }, + "322": { + "1": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ] + }, + "2": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "3": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "4": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "5": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + } + }, + "323": { + "1": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ] + }, + "2": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "3": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "4": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "5": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + } + }, + "325": { + "1": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "327": { + "0": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "328": { + "1": [ + "1", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "331": [ + "", + "type", + {}, + [ + "__add__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__enter__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__exit__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ], + "332": [ + "", + "type", + {}, + [ + "__add__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__enter__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__exit__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ], + "334": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "3", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "100", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "3", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "100", + "int", + {} + ], + "5": [ + "101", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "194", + "int", + {} + ], + "4": [ + "195", + "int", + {} + ], + "5": [ + "196", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "100", + "int", + {} + ], + "3": [ + "195", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "197", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "100", + "int", + {} + ], + "2": [ + "101", + "int", + {} + ], + "3": [ + "196", + "int", + {} + ], + "4": [ + "197", + "int", + {} + ], + "5": [ + "198", + "int", + {} + ] + } + }, + "335": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "337": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "339": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "340": [ + "", + -2, + {} + ], + "342": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "343": [ + "", + -2, + {} + ], + "345": { + "0": [ + "0", + "int", + {} + ] + }, + "346": { + "0": [ + "0", + "int", + {} + ] + }, + "347": [ + "", + -2, + {} + ], + "350": [ + "", + "MyClass", + {}, + [ + "list", + [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ] + ] + ], + "352": [ + "", + "SlotClass", + {}, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ], + "353": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "354": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "358": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "360": [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ], + "362": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "370": [ + "'1 + 2'", + "str", + { + "len": 5 + } + ], + "385": [ + "", + "function", + {} + ], + "386": [ + ". at 0xABC>", + "function", + {} + ], + "405": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[[]]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "2": [ + "[[], [1, 2]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", + "list", + { + "len": 97 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "94", + [ + "[94, 95, 96, ..., 279, 280, 281]", + "list", + { + "len": 188 + }, + [ + "0", + [ + "94", + "int", + {} + ] + ], + [ + "1", + [ + "95", + "int", + {} + ] + ], + [ + "2", + [ + "96", + "int", + {} + ] + ], + [ + "185", + [ + "279", + "int", + {} + ] + ], + [ + "186", + [ + "280", + "int", + {} + ] + ], + [ + "187", + [ + "281", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "187", + [ + "282", + "int", + {} + ] + ], + [ + "188", + [ + "283", + "int", + {} + ] + ], + [ + "189", + [ + "284", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "187", + [ + "282", + "int", + {} + ] + ], + [ + "188", + [ + "283", + "int", + {} + ] + ], + [ + "189", + [ + "284", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ], + [ + "193", + [ + "290", + "int", + {} + ] + ] + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ], + [ + "193", + [ + "290", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ], + [ + "194", + [ + "292", + "int", + {} + ] + ], + [ + "195", + [ + "293", + "int", + {} + ] + ] + ] + ] + ] + }, + "411": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "412": { + "1": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ] + }, + "2": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ] + }, + "3": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "4": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "5": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + } + }, + "413": { + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "3", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "5", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "288", + "int", + {} + ], + "4": [ + "289", + "int", + {} + ], + "5": [ + "290", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "100", + "int", + {} + ], + "3": [ + "291", + "int", + {} + ], + "4": [ + "292", + "int", + {} + ], + "5": [ + "293", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "100", + "int", + {} + ], + "2": [ + "101", + "int", + {} + ], + "3": [ + "294", + "int", + {} + ], + "4": [ + "295", + "int", + {} + ], + "5": [ + "296", + "int", + {} + ] + } + }, + "414": { + "1": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ] + }, + "2": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ] + }, + "3": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + }, + "4": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + }, + "5": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + } + }, + "415": { + "1": { + "0": [ + "[[], [1]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ] + ] + }, + "2": { + "0": [ + "[[], [1, 2], [2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ] + ] + }, + "3": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ] + ] + }, + "4": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ] + ] + }, + "5": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 294, 295, 296]", + "list", + { + "len": 198 + } + ] + ] + ] + } + }, + "416": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ] + }, + "417": { + "1": [ + "11.0", + "float", + {} + ], + "3": [ + "11.0", + "float", + {} + ] + }, + "422": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "1": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "3": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "4": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "5": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "424": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "0", + "int", + {} + ], + "2": [ + "0", + "int", + {} + ], + "3": [ + "0", + "int", + {} + ], + "4": [ + "0", + "int", + {} + ], + "5": [ + "0", + "int", + {} + ] + }, + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "1", + "int", + {} + ], + "3": [ + "1", + "int", + {} + ], + "4": [ + "1", + "int", + {} + ], + "5": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "2", + "int", + {} + ], + "4": [ + "2", + "int", + {} + ], + "5": [ + "2", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "97", + "int", + {} + ], + "2": [ + "97", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "97", + "int", + {} + ], + "5": [ + "97", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "98", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "98", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "426": { + "0": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "1": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "2": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "3": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "4": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "5": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ] + }, + "432": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "435": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "439": [ + "range(0, 1)", + "range", + { + "len": 1 + } + ], + "44": [ + "", + -2, + {} + ], + "441": [ + "", + "type", + {}, + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__init__", + [ + "", + "function", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__slots__", + [ + "('slot1',)", + "tuple", + { + "len": 1 + }, + [ + "0", + [ + "'slot1'", + "str", + { + "len": 5 + } + ] + ] + ] + ], + [ + "slot1", + [ + "", + "member_descriptor", + {} + ] + ] + ], + "444": [ + "range(0, 1000)", + "range", + { + "len": 1000 + } + ], + "448": [ + "range(0, 1000)", + "range", + { + "len": 1000 + } + ], + "45": [ + "", + -2, + {} + ], + "46": [ + "", + -2, + {} + ], + "47": [ + "", + -2, + {} + ], + "477": { + "1": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[1]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ] + ] + }, + "2": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[2]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ] + ], + "2": [ + "[2, 3]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ] + ], + "3": [ + "[2, 3, 4]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ] + ] + }, + "3": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[97]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ] + ], + "2": [ + "[97, 98]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ] + ], + "3": [ + "[97, 98, 99, ..., 285, 286, 287]", + "list", + { + "len": 191 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "188", + [ + "285", + "int", + {} + ] + ], + [ + "189", + [ + "286", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ] + ], + "4": [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "189", + [ + "286", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ] + ], + "5": [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ] + ] + }, + "4": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[98]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ] + ], + "2": [ + "[98, 99]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ] + ], + "3": [ + "[98, 99, 100, ..., 288, 289, 290]", + "list", + { + "len": 193 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "190", + [ + "288", + "int", + {} + ] + ], + [ + "191", + [ + "289", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ] + ], + "4": [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "191", + [ + "289", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ] + ], + "5": [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ], + [ + "194", + [ + "292", + "int", + {} + ] + ] + ] + }, + "5": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[99]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ] + ], + "2": [ + "[99, 100]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ] + ], + "3": [ + "[99, 100, 101, ..., 291, 292, 293]", + "list", + { + "len": 195 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "192", + [ + "291", + "int", + {} + ] + ], + [ + "193", + [ + "292", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ] + ], + "4": [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "193", + [ + "292", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ], + [ + "195", + [ + "294", + "int", + {} + ] + ] + ], + "5": [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ], + [ + "195", + [ + "294", + "int", + {} + ] + ], + [ + "196", + [ + "295", + "int", + {} + ] + ] + ] + } + }, + "479": { + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "2", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "97", + "int", + {} + ], + "2": [ + "97", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "97", + "int", + {} + ], + "5": [ + "97", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "98", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "98", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "48": [ + "", + -2, + {} + ], + "481": { + "1": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "3": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "191", + "int", + {} + ], + "4": [ + "192", + "int", + {} + ], + "5": [ + "193", + "int", + {} + ] + }, + "4": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "193", + "int", + {} + ], + "4": [ + "194", + "int", + {} + ], + "5": [ + "195", + "int", + {} + ] + }, + "5": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "195", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "197", + "int", + {} + ] + } + }, + "485": { + "0": [ + "ZeroDivisionError: division by zero", + -1, + {} + ], + "1": [ + "1.0", + "float", + {} + ], + "2": [ + "ZeroDivisionError: division by zero", + -1, + {} + ], + "3": [ + "1.0", + "float", + {} + ] + }, + "49": [ + "", + -2, + {} + ], + "50": [ + "", + -2, + {} + ], + "51": [ + "", + -2, + {} + ], + "52": [ + "", + -2, + {} + ], + "526": { + "1": { + "0": [ + "[[], []]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1]", + "list", + { + "len": 1 + } + ] + ] + ] + }, + "2": { + "0": [ + "[[], [1, 2], []]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4]", + "list", + { + "len": 3 + } + ] + ] + ] + }, + "3": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 285, 286, 287]", + "list", + { + "len": 191 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + } + ] + ] + ] + }, + "4": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 288, 289, 290]", + "list", + { + "len": 193 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + } + ] + ] + ] + }, + "5": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 291, 292, 293]", + "list", + { + "len": 195 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + } + ] + ] + ] + } + }, + "53": [ + "", + -2, + { + "inner_calls": [ + "test_id_6", + "test_id_7" + ] + } + ], + "533": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "0", + "int", + {} + ], + "3": [ + "1", + "int", + {} + ] + }, + "54": [ + "", + -2, + {} + ], + "546": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "55": [ + "", + -2, + {} + ], + "56": [ + "", + -2, + {} + ], + "57": [ + "", + -2, + {} + ], + "58": [ + "", + -2, + {} + ], + "59": [ + "", + -2, + {} + ], + "60": [ + "", + -2, + {} + ], + "61": [ + "", + -2, + {} + ], + "62": [ + "", + -2, + {} + ], + "63": [ + "", + -2, + {} + ], + "64": [ + "", + -2, + {} + ], + "65": [ + "", + -2, + {} + ], + "66": [ + "", + -2, + {} + ], + "67": [ + "", + -2, + {} + ], + "68": [ + "", + -2, + {} + ], + "69": [ + "", + -2, + {} + ], + "70": [ + "", + -2, + {} + ], + "71": [ + "", + -2, + {} + ], + "72": [ + "", + -2, + {} + ], + "73": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 65, + "start": 64, + "tree_index": 46 + }, + { + "end": 205, + "start": 204, + "tree_index": 47 + }, + { + "end": 1254, + "start": 1250, + "tree_index": 66 + }, + { + "end": 118, + "start": 117, + "tree_index": 128 + }, + { + "end": 438, + "start": 437, + "tree_index": 240 + }, + { + "end": 417, + "start": 416, + "tree_index": 335 + }, + { + "end": 471, + "start": 470, + "tree_index": 340 + }, + { + "end": 503, + "start": 502, + "tree_index": 343 + }, + { + "end": 539, + "start": 538, + "tree_index": 347 + } + ], + "node_loops": { + "127": [ + 46 + ], + "128": [ + 46 + ], + "131": [ + 47 + ], + "132": [ + 47 + ], + "162": [ + 66 + ], + "221": [ + 46 + ], + "223": [ + 46 + ], + "224": [ + 46, + 128 + ], + "225": [ + 46, + 128 + ], + "229": [ + 47 + ], + "231": [ + 47 + ], + "232": [ + 47 + ], + "239": [ + 240 + ], + "317": [ + 46 + ], + "320": [ + 46 + ], + "321": [ + 46 + ], + "322": [ + 46, + 128 + ], + "323": [ + 46, + 128 + ], + "325": [ + 47 + ], + "326": [ + 47 + ], + "327": [ + 47 + ], + "328": [ + 47 + ], + "334": [ + 240, + 335 + ], + "335": [ + 240 + ], + "339": [ + 340 + ], + "342": [ + 343 + ], + "345": [ + 347 + ], + "346": [ + 347 + ], + "405": [ + 46 + ], + "411": [ + 46 + ], + "412": [ + 46, + 128 + ], + "413": [ + 46, + 128 + ], + "414": [ + 46, + 128 + ], + "415": [ + 46, + 128 + ], + "416": [ + 47 + ], + "417": [ + 47 + ], + "422": [ + 240, + 335 + ], + "424": [ + 240, + 335 + ], + "426": [ + 240 + ], + "477": [ + 46, + 128 + ], + "479": [ + 46, + 128 + ], + "481": [ + 46, + 128 + ], + "485": [ + 47 + ], + "491": [ + 240 + ], + "526": [ + 46, + 128 + ], + "533": [ + 47 + ], + "546": [ + 47 + ] + }, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 40, + "start": 16, + "tree_index": 44 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 55, + "start": 46, + "tree_index": 45 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 194, + "start": 56, + "tree_index": 46 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 359, + "start": 196, + "tree_index": 47 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 390, + "start": 365, + "tree_index": 48 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 453, + "start": 395, + "tree_index": 49 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 484, + "start": 458, + "tree_index": 50 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 517, + "start": 489, + "tree_index": 51 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 553, + "start": 522, + "tree_index": 52 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 578, + "start": 554, + "tree_index": 53 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 605, + "start": 583, + "tree_index": 54 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 812, + "start": 611, + "tree_index": 55 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 880, + "start": 818, + "tree_index": 56 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 922, + "start": 886, + "tree_index": 57 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 933, + "start": 928, + "tree_index": 58 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 944, + "start": 938, + "tree_index": 59 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 962, + "start": 949, + "tree_index": 60 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 972, + "start": 967, + "tree_index": 61 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1002, + "start": 978, + "tree_index": 62 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1032, + "start": 1008, + "tree_index": 63 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1067, + "start": 1037, + "tree_index": 64 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1238, + "start": 1069, + "tree_index": 65 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 1269, + "start": 1240, + "tree_index": 66 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1307, + "start": 1275, + "tree_index": 67 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1321, + "start": 1313, + "tree_index": 68 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1331, + "start": 1326, + "tree_index": 69 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1349, + "start": 1336, + "tree_index": 70 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1364, + "start": 1355, + "tree_index": 71 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1381, + "start": 1369, + "tree_index": 72 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1398, + "start": 1386, + "tree_index": 73 + }, + { + "classes": [], + "depth": 3, + "end": 40, + "start": 23, + "tree_index": 122 + }, + { + "classes": [], + "depth": 3, + "end": 79, + "start": 69, + "tree_index": 126 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 104, + "start": 89, + "tree_index": 127 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 3, + "end": 194, + "start": 105, + "tree_index": 128 + }, + { + "classes": [], + "depth": 3, + "end": 217, + "start": 209, + "tree_index": 130 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 322, + "start": 219, + "tree_index": 131 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 359, + "start": 323, + "tree_index": 132 + }, + { + "classes": [], + "depth": 3, + "end": 390, + "start": 369, + "tree_index": 134 + }, + { + "classes": [], + "depth": 3, + "end": 453, + "start": 404, + "tree_index": 136 + }, + { + "classes": [], + "depth": 3, + "end": 484, + "start": 458, + "tree_index": 137 + }, + { + "classes": [], + "depth": 3, + "end": 517, + "start": 489, + "tree_index": 138 + }, + { + "classes": [], + "depth": 3, + "end": 553, + "start": 522, + "tree_index": 139 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 578, + "start": 574, + "tree_index": 141 + }, + { + "classes": [], + "depth": 3, + "end": 605, + "start": 583, + "tree_index": 142 + }, + { + "classes": [], + "depth": 3, + "end": 812, + "start": 618, + "tree_index": 143 + }, + { + "classes": [], + "depth": 3, + "end": 880, + "start": 825, + "tree_index": 144 + }, + { + "classes": [], + "depth": 3, + "end": 922, + "start": 893, + "tree_index": 145 + }, + { + "classes": [], + "depth": 3, + "end": 962, + "start": 956, + "tree_index": 151 + }, + { + "classes": [], + "depth": 3, + "end": 1002, + "start": 978, + "tree_index": 153 + }, + { + "classes": [], + "depth": 3, + "end": 1032, + "start": 1015, + "tree_index": 154 + }, + { + "classes": [], + "depth": 3, + "end": 1067, + "start": 1044, + "tree_index": 155 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1104, + "start": 1086, + "tree_index": 156 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1238, + "start": 1231, + "tree_index": 160 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1269, + "start": 1264, + "tree_index": 162 + }, + { + "classes": [], + "depth": 3, + "end": 1307, + "start": 1282, + "tree_index": 163 + }, + { + "classes": [], + "depth": 3, + "end": 1349, + "start": 1343, + "tree_index": 166 + }, + { + "classes": [], + "depth": 3, + "end": 1364, + "start": 1359, + "tree_index": 168 + }, + { + "classes": [], + "depth": 3, + "end": 1381, + "start": 1369, + "tree_index": 169 + }, + { + "classes": [], + "depth": 3, + "end": 1398, + "start": 1386, + "tree_index": 170 + }, + { + "classes": [], + "depth": 4, + "end": 35, + "start": 23, + "tree_index": 213 + }, + { + "classes": [], + "depth": 4, + "end": 74, + "start": 69, + "tree_index": 219 + }, + { + "classes": [], + "depth": 4, + "end": 104, + "start": 89, + "tree_index": 221 + }, + { + "classes": [], + "depth": 4, + "end": 134, + "start": 122, + "tree_index": 223 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 170, + "start": 148, + "tree_index": 224 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 194, + "start": 183, + "tree_index": 225 + }, + { + "classes": [], + "depth": 4, + "end": 214, + "start": 209, + "tree_index": 227 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 267, + "start": 244, + "tree_index": 229 + }, + { + "classes": [], + "depth": 4, + "end": 340, + "start": 334, + "tree_index": 231 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 359, + "start": 354, + "tree_index": 232 + }, + { + "classes": [], + "depth": 4, + "end": 378, + "start": 369, + "tree_index": 234 + }, + { + "classes": [], + "depth": 4, + "end": 390, + "start": 381, + "tree_index": 236 + }, + { + "classes": [], + "depth": 4, + "end": 396, + "start": 395, + "tree_index": 237 + }, + { + "classes": [], + "depth": 4, + "end": 432, + "start": 405, + "tree_index": 239 + }, + { + "classes": [ + "loop" + ], + "depth": 4, + "end": 452, + "start": 433, + "tree_index": 240 + }, + { + "classes": [], + "depth": 4, + "end": 461, + "start": 458, + "tree_index": 241 + }, + { + "classes": [], + "depth": 4, + "end": 484, + "start": 463, + "tree_index": 242 + }, + { + "classes": [], + "depth": 4, + "end": 494, + "start": 489, + "tree_index": 243 + }, + { + "classes": [], + "depth": 4, + "end": 516, + "start": 495, + "tree_index": 244 + }, + { + "classes": [], + "depth": 4, + "end": 527, + "start": 522, + "tree_index": 245 + }, + { + "classes": [], + "depth": 4, + "end": 552, + "start": 528, + "tree_index": 246 + }, + { + "classes": [], + "depth": 4, + "end": 564, + "start": 563, + "tree_index": 247 + }, + { + "classes": [], + "depth": 4, + "end": 588, + "start": 583, + "tree_index": 248 + }, + { + "classes": [], + "depth": 4, + "end": 604, + "start": 589, + "tree_index": 249 + }, + { + "classes": [], + "depth": 4, + "end": 729, + "start": 618, + "tree_index": 250 + }, + { + "classes": [], + "depth": 4, + "end": 812, + "start": 733, + "tree_index": 252 + }, + { + "classes": [], + "depth": 4, + "end": 859, + "start": 825, + "tree_index": 253 + }, + { + "classes": [], + "depth": 4, + "end": 917, + "start": 893, + "tree_index": 256 + }, + { + "classes": [], + "depth": 4, + "end": 957, + "start": 956, + "tree_index": 261 + }, + { + "classes": [], + "depth": 4, + "end": 983, + "start": 978, + "tree_index": 265 + }, + { + "classes": [], + "depth": 4, + "end": 1027, + "start": 1015, + "tree_index": 269 + }, + { + "classes": [], + "depth": 4, + "end": 1057, + "start": 1044, + "tree_index": 272 + }, + { + "classes": [], + "depth": 4, + "end": 1104, + "start": 1092, + "tree_index": 275 + }, + { + "classes": [], + "depth": 4, + "end": 1130, + "start": 1116, + "tree_index": 276 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1149, + "start": 1145, + "tree_index": 277 + }, + { + "classes": [], + "depth": 4, + "end": 1170, + "start": 1161, + "tree_index": 278 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1184, + "start": 1180, + "tree_index": 279 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1209, + "start": 1205, + "tree_index": 280 + }, + { + "classes": [], + "depth": 4, + "end": 1238, + "start": 1231, + "tree_index": 281 + }, + { + "classes": [], + "depth": 4, + "end": 1302, + "start": 1282, + "tree_index": 282 + }, + { + "classes": [], + "depth": 4, + "end": 1344, + "start": 1343, + "tree_index": 286 + }, + { + "classes": [], + "depth": 4, + "end": 1362, + "start": 1359, + "tree_index": 290 + }, + { + "classes": [], + "depth": 4, + "end": 1378, + "start": 1369, + "tree_index": 291 + }, + { + "classes": [], + "depth": 4, + "end": 1380, + "start": 1379, + "tree_index": 292 + }, + { + "classes": [], + "depth": 4, + "end": 1395, + "start": 1386, + "tree_index": 293 + }, + { + "classes": [], + "depth": 4, + "end": 1397, + "start": 1396, + "tree_index": 294 + }, + { + "classes": [], + "depth": 5, + "end": 32, + "start": 23, + "tree_index": 314 + }, + { + "classes": [], + "depth": 5, + "end": 100, + "start": 89, + "tree_index": 317 + }, + { + "classes": [], + "depth": 5, + "end": 127, + "start": 122, + "tree_index": 320 + }, + { + "classes": [], + "depth": 5, + "end": 133, + "start": 128, + "tree_index": 321 + }, + { + "classes": [], + "depth": 5, + "end": 170, + "start": 148, + "tree_index": 322 + }, + { + "classes": [], + "depth": 5, + "end": 194, + "start": 183, + "tree_index": 323 + }, + { + "classes": [], + "depth": 5, + "end": 267, + "start": 244, + "tree_index": 325 + }, + { + "classes": [], + "depth": 5, + "end": 300, + "start": 283, + "tree_index": 326 + }, + { + "classes": [ + "stmt" + ], + "depth": 5, + "end": 322, + "start": 314, + "tree_index": 327 + }, + { + "classes": [], + "depth": 5, + "end": 335, + "start": 334, + "tree_index": 328 + }, + { + "classes": [], + "depth": 5, + "end": 376, + "start": 369, + "tree_index": 331 + }, + { + "classes": [], + "depth": 5, + "end": 388, + "start": 381, + "tree_index": 332 + }, + { + "classes": [], + "depth": 5, + "end": 411, + "start": 406, + "tree_index": 334 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 431, + "start": 412, + "tree_index": 335 + }, + { + "classes": [], + "depth": 5, + "end": 452, + "start": 442, + "tree_index": 337 + }, + { + "classes": [], + "depth": 5, + "end": 465, + "start": 464, + "tree_index": 339 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 483, + "start": 466, + "tree_index": 340 + }, + { + "classes": [], + "depth": 5, + "end": 497, + "start": 496, + "tree_index": 342 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 515, + "start": 498, + "tree_index": 343 + }, + { + "classes": [], + "depth": 5, + "end": 530, + "start": 529, + "tree_index": 345 + }, + { + "classes": [], + "depth": 5, + "end": 533, + "start": 532, + "tree_index": 346 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 551, + "start": 534, + "tree_index": 347 + }, + { + "classes": [], + "depth": 5, + "end": 590, + "start": 589, + "tree_index": 350 + }, + { + "classes": [], + "depth": 5, + "end": 604, + "start": 593, + "tree_index": 352 + }, + { + "classes": [], + "depth": 5, + "end": 630, + "start": 618, + "tree_index": 353 + }, + { + "classes": [], + "depth": 5, + "end": 657, + "start": 640, + "tree_index": 354 + }, + { + "classes": [], + "depth": 5, + "end": 751, + "start": 734, + "tree_index": 358 + }, + { + "classes": [], + "depth": 5, + "end": 811, + "start": 782, + "tree_index": 360 + }, + { + "classes": [], + "depth": 5, + "end": 837, + "start": 825, + "tree_index": 362 + }, + { + "classes": [], + "depth": 5, + "end": 845, + "start": 838, + "tree_index": 363 + }, + { + "classes": [], + "depth": 5, + "end": 897, + "start": 893, + "tree_index": 369 + }, + { + "classes": [], + "depth": 5, + "end": 916, + "start": 898, + "tree_index": 370 + }, + { + "classes": [], + "depth": 5, + "end": 1056, + "start": 1054, + "tree_index": 377 + }, + { + "classes": [], + "depth": 5, + "end": 1102, + "start": 1092, + "tree_index": 382 + }, + { + "classes": [], + "depth": 5, + "end": 1236, + "start": 1231, + "tree_index": 385 + }, + { + "classes": [], + "depth": 5, + "end": 1298, + "start": 1283, + "tree_index": 386 + }, + { + "classes": [], + "depth": 6, + "end": 93, + "start": 89, + "tree_index": 405 + }, + { + "classes": [], + "depth": 6, + "end": 133, + "start": 132, + "tree_index": 411 + }, + { + "classes": [], + "depth": 6, + "end": 163, + "start": 148, + "tree_index": 412 + }, + { + "classes": [], + "depth": 6, + "end": 169, + "start": 164, + "tree_index": 413 + }, + { + "classes": [], + "depth": 6, + "end": 188, + "start": 183, + "tree_index": 414 + }, + { + "classes": [], + "depth": 6, + "end": 193, + "start": 189, + "tree_index": 415 + }, + { + "classes": [], + "depth": 6, + "end": 249, + "start": 244, + "tree_index": 416 + }, + { + "classes": [], + "depth": 6, + "end": 266, + "start": 250, + "tree_index": 417 + }, + { + "classes": [], + "depth": 6, + "end": 407, + "start": 406, + "tree_index": 422 + }, + { + "classes": [], + "depth": 6, + "end": 411, + "start": 410, + "tree_index": 424 + }, + { + "classes": [], + "depth": 6, + "end": 431, + "start": 421, + "tree_index": 426 + }, + { + "classes": [], + "depth": 6, + "end": 447, + "start": 442, + "tree_index": 428 + }, + { + "classes": [], + "depth": 6, + "end": 483, + "start": 475, + "tree_index": 432 + }, + { + "classes": [], + "depth": 6, + "end": 515, + "start": 507, + "tree_index": 435 + }, + { + "classes": [], + "depth": 6, + "end": 551, + "start": 543, + "tree_index": 439 + }, + { + "classes": [], + "depth": 6, + "end": 602, + "start": 593, + "tree_index": 441 + }, + { + "classes": [], + "depth": 6, + "end": 644, + "start": 640, + "tree_index": 443 + }, + { + "classes": [], + "depth": 6, + "end": 656, + "start": 645, + "tree_index": 444 + }, + { + "classes": [], + "depth": 6, + "end": 738, + "start": 734, + "tree_index": 447 + }, + { + "classes": [], + "depth": 6, + "end": 750, + "start": 739, + "tree_index": 448 + }, + { + "classes": [], + "depth": 6, + "end": 786, + "start": 782, + "tree_index": 449 + }, + { + "classes": [], + "depth": 6, + "end": 1298, + "start": 1293, + "tree_index": 473 + }, + { + "classes": [], + "depth": 7, + "end": 156, + "start": 148, + "tree_index": 477 + }, + { + "classes": [], + "depth": 7, + "end": 165, + "start": 164, + "tree_index": 479 + }, + { + "classes": [], + "depth": 7, + "end": 169, + "start": 168, + "tree_index": 481 + }, + { + "classes": [], + "depth": 7, + "end": 261, + "start": 250, + "tree_index": 485 + }, + { + "classes": [], + "depth": 7, + "end": 426, + "start": 421, + "tree_index": 491 + }, + { + "classes": [], + "depth": 7, + "end": 480, + "start": 475, + "tree_index": 495 + }, + { + "classes": [], + "depth": 7, + "end": 512, + "start": 507, + "tree_index": 498 + }, + { + "classes": [], + "depth": 7, + "end": 548, + "start": 543, + "tree_index": 501 + }, + { + "classes": [], + "depth": 7, + "end": 650, + "start": 645, + "tree_index": 505 + }, + { + "classes": [], + "depth": 7, + "end": 744, + "start": 739, + "tree_index": 510 + }, + { + "classes": [], + "depth": 7, + "end": 1294, + "start": 1293, + "tree_index": 523 + }, + { + "classes": [], + "depth": 8, + "end": 152, + "start": 148, + "tree_index": 526 + }, + { + "classes": [], + "depth": 8, + "end": 260, + "start": 255, + "tree_index": 533 + }, + { + "classes": [], + "depth": 9, + "end": 256, + "start": 255, + "tree_index": 546 + } + ] + }, + "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n sum (n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", + "lineno": 63, + "name": "main" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "3" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "3", + "int", + {} + ], + "177": [ + "3", + "int", + {} + ], + "179": [ + "2", + "int", + { + "inner_calls": [ + "test_id_3" + ] + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "298": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "299": [ + "2", + "int", + {} + ], + "395": [ + "3", + "int", + {} + ], + "78": [ + "False", + "bool", + {} + ], + "80": [ + "6", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "6", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "2" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "2", + "int", + {} + ], + "177": [ + "2", + "int", + {} + ], + "179": [ + "1", + "int", + { + "inner_calls": [ + "test_id_4" + ] + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "298": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "299": [ + "1", + "int", + {} + ], + "395": [ + "2", + "int", + {} + ], + "78": [ + "False", + "bool", + {} + ], + "80": [ + "2", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "2", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "1" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "1", + "int", + {} + ], + "19": [ + "", + -2, + {} + ], + "78": [ + "True", + "bool", + {} + ], + "79": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "1", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "other", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "114": [ + "", + -2, + {} + ], + "204": [ + "", + "MyClass", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 46, + "start": 34, + "tree_index": 114 + }, + { + "classes": [], + "depth": 4, + "end": 46, + "start": 41, + "tree_index": 204 + } + ] + }, + "html_body": " @eye\n def __add__(self, other):\n return other", + "lineno": 50, + "name": "MyClass.__add__" + }, + "return_value": "", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "117": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 33, + "start": 29, + "tree_index": 117 + } + ] + }, + "html_body": " @eye\n def __enter__(self):\n pass", + "lineno": 54, + "name": "MyClass.__enter__" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "exc_type", + "None" + ], + [ + "exc_val", + "None" + ], + [ + "exc_tb", + "None" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "120": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 59, + "start": 55, + "tree_index": 120 + } + ] + }, + "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", + "lineno": 58, + "name": "MyClass.__exit__" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "other", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "114": [ + "", + -2, + {} + ], + "204": [ + "", + "SlotClass", + {}, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 46, + "start": 34, + "tree_index": 114 + }, + { + "classes": [], + "depth": 4, + "end": 46, + "start": 41, + "tree_index": 204 + } + ] + }, + "html_body": " @eye\n def __add__(self, other):\n return other", + "lineno": 50, + "name": "MyClass.__add__" + }, + "return_value": "", + "traceback": null + }, + { + "arguments": [ + [ + "pos1", + "[0, 1, 2, ..., 997, 998, 999]" + ], + [ + "pos2", + "'hello'" + ], + [ + "key1", + "3" + ], + [ + "key2", + "8" + ], + [ + "args", + "()" + ], + [ + "kwargs", + "{'kwarg1': {'key': 'value'}}" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "186": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "187": [ + "'hello'", + "str", + { + "len": 5 + } + ], + "188": [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ], + "28": [ + "", + -2, + {} + ], + "96": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 94, + "start": 67, + "tree_index": 28 + }, + { + "classes": [], + "depth": 3, + "end": 94, + "start": 74, + "tree_index": 96 + }, + { + "classes": [], + "depth": 4, + "end": 79, + "start": 75, + "tree_index": 186 + }, + { + "classes": [], + "depth": 4, + "end": 85, + "start": 81, + "tree_index": 187 + }, + { + "classes": [], + "depth": 4, + "end": 93, + "start": 87, + "tree_index": 188 + } + ] + }, + "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", + "lineno": 26, + "name": "complex_args" + }, + "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "traceback": null + }, + { + "arguments": [ + [ + "pos1", + "1" + ], + [ + "pos2", + "2" + ], + [ + "key1", + "3" + ], + [ + "key2", + "4" + ], + [ + "args", + "()" + ], + [ + "kwargs", + "{'k': 23}" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "186": [ + "1", + "int", + {} + ], + "187": [ + "2", + "int", + {} + ], + "188": [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ], + "28": [ + "", + -2, + {} + ], + "96": [ + "[1, 2, {'k': 23}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 94, + "start": 67, + "tree_index": 28 + }, + { + "classes": [], + "depth": 3, + "end": 94, + "start": 74, + "tree_index": 96 + }, + { + "classes": [], + "depth": 4, + "end": 79, + "start": 75, + "tree_index": 186 + }, + { + "classes": [], + "depth": 4, + "end": 85, + "start": 81, + "tree_index": 187 + }, + { + "classes": [], + "depth": 4, + "end": 93, + "start": 87, + "tree_index": 188 + } + ] + }, + "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", + "lineno": 26, + "name": "complex_args" + }, + "return_value": "[1, 2, {'k': 23}]", + "traceback": null + }, + { + "arguments": [ + [ + "g", + "" + ] + ], + "data": { + "loop_iterations": { + "34": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "104": [ + "", + "islice", + {} + ], + "105": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "195": [ + "", + "type", + {}, + [ + "__doc__", + [ + "'islice(iterab...s an iterator.'", + "str", + { + "len": 453 + } + ] + ], + [ + "__getattribute__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__iter__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__new__", + [ + "", + "builtin_function_or_method", + {} + ] + ], + [ + "__next__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__reduce__", + [ + "", + "method_descriptor", + {} + ] + ], + [ + "__setstate__", + [ + "", + "method_descriptor", + {} + ] + ] + ], + "196": [ + "", + "generator", + {} + ], + "198": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ] + }, + "309": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ] + }, + "310": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "34": [ + "", + -2, + { + "inner_calls": [ + "test_id_12" + ] + } + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 27, + "start": 26, + "tree_index": 34 + } + ], + "node_loops": { + "105": [ + 34 + ], + "198": [ + 34 + ], + "309": [ + 34 + ], + "310": [ + 34 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 61, + "start": 18, + "tree_index": 34 + }, + { + "classes": [], + "depth": 3, + "end": 43, + "start": 31, + "tree_index": 104 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 61, + "start": 53, + "tree_index": 105 + }, + { + "classes": [], + "depth": 4, + "end": 37, + "start": 31, + "tree_index": 195 + }, + { + "classes": [], + "depth": 4, + "end": 39, + "start": 38, + "tree_index": 196 + }, + { + "classes": [], + "depth": 4, + "end": 61, + "start": 53, + "tree_index": 198 + }, + { + "classes": [], + "depth": 5, + "end": 58, + "start": 53, + "tree_index": 309 + }, + { + "classes": [], + "depth": 5, + "end": 60, + "start": 59, + "tree_index": 310 + } + ] + }, + "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", + "lineno": 37, + "name": "use_gen_1" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [], + "data": { + "loop_iterations": { + "31": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + }, + { + "index": 4, + "loops": {} + }, + { + "index": 5, + "loops": {} + } + ] + }, + "node_values": { + "100": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "193": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "306": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ], + "4": [ + "4", + "int", + {} + ], + "5": [ + "5", + "int", + {} + ] + }, + "31": [ + "", + -2, + {} + ], + "99": [ + "range(0, 6)", + "range", + { + "len": 6 + } + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 20, + "start": 19, + "tree_index": 31 + } + ], + "node_loops": { + "100": [ + 31 + ], + "193": [ + 31 + ], + "306": [ + 31 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 49, + "start": 11, + "tree_index": 31 + }, + { + "classes": [], + "depth": 3, + "end": 32, + "start": 24, + "tree_index": 99 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 42, + "tree_index": 100 + }, + { + "classes": [], + "depth": 4, + "end": 29, + "start": 24, + "tree_index": 191 + }, + { + "classes": [], + "depth": 4, + "end": 49, + "start": 42, + "tree_index": 193 + }, + { + "classes": [], + "depth": 5, + "end": 49, + "start": 48, + "tree_index": 306 + } + ] + }, + "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", + "lineno": 31, + "name": "gen" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "g", + "" + ] + ], + "data": { + "loop_iterations": { + "37": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "109": [ + "", + "generator", + {} + ], + "110": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "201": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ] + }, + "311": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ] + }, + "312": { + "0": [ + "3", + "int", + {} + ], + "1": [ + "4", + "int", + {} + ], + "2": [ + "5", + "int", + {} + ] + }, + "37": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 27, + "start": 26, + "tree_index": 37 + } + ], + "node_loops": { + "110": [ + 37 + ], + "201": [ + 37 + ], + "311": [ + 37 + ], + "312": [ + 37 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 50, + "start": 18, + "tree_index": 37 + }, + { + "classes": [], + "depth": 3, + "end": 32, + "start": 31, + "tree_index": 109 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 50, + "start": 42, + "tree_index": 110 + }, + { + "classes": [], + "depth": 4, + "end": 50, + "start": 42, + "tree_index": 201 + }, + { + "classes": [], + "depth": 5, + "end": 47, + "start": 42, + "tree_index": 311 + }, + { + "classes": [], + "depth": 5, + "end": 49, + "start": 48, + "tree_index": 312 + } + ] + }, + "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", + "lineno": 43, + "name": "use_gen_2" + }, + "return_value": "None", + "traceback": null + } +] \ No newline at end of file diff --git a/tests/golden-files/3.11/traced.json b/tests/golden-files/3.11/traced.json new file mode 100644 index 0000000..527c16c --- /dev/null +++ b/tests/golden-files/3.11/traced.json @@ -0,0 +1,1785 @@ +[ + { + "arguments": [], + "data": { + "loop_iterations": {}, + "node_values": { + "1": [ + "", + -2, + {} + ], + "13": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_15" + ] + } + ], + "2": [ + "", + -2, + {} + ], + "27": [ + "", + "function", + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "node_loops": { + "103": [ + 104 + ], + "105": [ + 82 + ], + "117": [ + 100, + 118 + ], + "118": [ + 100 + ], + "121": [ + 104 + ], + "123": [ + 104 + ], + "127": [ + 82 + ], + "136": [ + 100, + 118 + ], + "140": [ + 100 + ], + "150": [ + 82 + ], + "152": [ + 82 + ], + "157": [ + 100 + ], + "158": [ + 100 + ], + "34": [ + 19 + ], + "53": [ + 19 + ], + "72": [ + 19 + ], + "73": [ + 19 + ], + "81": [ + 82 + ], + "95": [ + 19 + ], + "97": [ + 19 + ], + "99": [ + 100 + ] + } + }, + "html_body": "import birdseye.trace_module_deep\n\n\ndef deco(f):\n return f\n\n\ndef m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()\n\n\nm()", + "lineno": 1, + "name": "$$__FILE__$$" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [], + "data": { + "loop_iterations": { + "100": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": { + "118": [ + { + "index": 0, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "118": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + } + ] + } + } + ], + "19": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ], + "82": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "10": [ + "", + -2, + {} + ], + "100": [ + "", + -2, + {} + ], + "105": { + "0": [ + ".A.. at 0xABC>", + "function", + {} + ], + "1": [ + ".A.. at 0xABC>", + "function", + {} + ], + "2": [ + ".A.. at 0xABC>", + "function", + {} + ] + }, + "108": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "11": [ + "", + -2, + {} + ], + "113": [ + ".A object at 0xABC>", + "m..A", + {} + ], + "117": { + "1": { + "0": [ + "0", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ] + } + }, + "118": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "12": [ + "", + -2, + {} + ], + "120": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "135": [ + ".A'>", + "type", + {}, + [ + "B", + [ + ".A.B'>", + "type", + {}, + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.traced'", + "str", + { + "len": 19 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.traced'", + "str", + { + "len": 19 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "bar", + [ + ".A.bar at 0xABC>", + "function", + {} + ] + ], + [ + "foo", + [ + ".A.foo at 0xABC>", + "function", + {} + ] + ], + [ + "i", + [ + "2", + "int", + {} + ] + ] + ], + "136": { + "1": { + "0": [ + "0", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + } + }, + "140": { + "0": [ + "range(0, 0)", + "range", + { + "len": 0 + } + ], + "1": [ + "range(0, 1)", + "range", + { + "len": 1 + } + ], + "2": [ + "range(0, 2)", + "range", + { + "len": 2 + } + ] + }, + "158": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "18": [ + "'9'", + "str", + { + "len": 1 + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "21": [ + "", + -2, + {} + ], + "22": [ + "", + -2, + {} + ], + "23": [ + "", + -2, + {} + ], + "24": [ + "", + -2, + { + "inner_calls": [ + "test_id_16" + ] + } + ], + "25": [ + "", + -2, + {} + ], + "26": [ + "4", + "int", + { + "inner_calls": [ + "test_id_17" + ] + } + ], + "31": [ + "9", + "int", + {} + ], + "33": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "34": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "35": [ + "", + -2, + {} + ], + "36": [ + "9", + "int", + {} + ], + "37": [ + "[0, 8, 16]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "8", + "int", + {} + ] + ], + [ + "2", + [ + "16", + "int", + {} + ] + ] + ], + "38": [ + "'{8, 9, 7}'", + "str", + { + "len": 9 + } + ], + "43": [ + "", + "function", + {} + ], + "46": [ + ".A.bar of .A object at 0xABC>>", + "method", + {} + ], + "53": { + "0": [ + "'0'", + "str", + { + "len": 1 + } + ], + "1": [ + "'1'", + "str", + { + "len": 1 + } + ], + "2": [ + "'4'", + "str", + { + "len": 1 + } + ] + }, + "54": [ + "'[[], [0], [0, 2]]'", + "str", + { + "len": 17 + } + ], + "55": [ + ".A. at 0xABC>", + "function", + {} + ], + "57": [ + ".A. at 0xABC>", + "function", + {} + ], + "60": [ + "{8, 9, 7}", + "set", + { + "len": 3 + }, + [ + "<0>", + [ + "8", + "int", + {} + ] + ], + [ + "<1>", + [ + "9", + "int", + {} + ] + ], + [ + "<2>", + [ + "7", + "int", + {} + ] + ] + ], + "69": [ + ".A object at 0xABC>", + "m..A", + {} + ], + "73": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ] + }, + "75": [ + "[[], [0], [0, 2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[0]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[0, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ] + ], + "81": { + "0": [ + "7", + "int", + {} + ], + "1": [ + "8", + "int", + {} + ], + "2": [ + "9", + "int", + {} + ] + }, + "82": [ + "", + -2, + {} + ], + "9": [ + "", + -2, + {} + ], + "93": [ + ".A.foo of .A object at 0xABC>>", + "method", + {} + ], + "95": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "97": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "99": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[0]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ], + "2": [ + "[0, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + } + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 61, + "start": 60, + "tree_index": 19 + }, + { + "end": 314, + "start": 313, + "tree_index": 82 + }, + { + "end": 181, + "start": 180, + "tree_index": 100 + }, + { + "end": 257, + "start": 256, + "tree_index": 104 + }, + { + "end": 145, + "start": 144, + "tree_index": 118 + } + ], + "node_loops": { + "103": [ + 104 + ], + "105": [ + 82 + ], + "117": [ + 100, + 118 + ], + "118": [ + 100 + ], + "121": [ + 104 + ], + "123": [ + 104 + ], + "127": [ + 82 + ], + "136": [ + 100, + 118 + ], + "140": [ + 100 + ], + "150": [ + 82 + ], + "152": [ + 82 + ], + "157": [ + 100 + ], + "158": [ + 100 + ], + "34": [ + 19 + ], + "53": [ + 19 + ], + "72": [ + 19 + ], + "73": [ + 19 + ], + "81": [ + 82 + ], + "95": [ + 19 + ], + "97": [ + 19 + ], + "99": [ + 100 + ] + }, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 1, + "end": 509, + "start": 0, + "tree_index": 3 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 20, + "start": 13, + "tree_index": 9 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 33, + "start": 25, + "tree_index": 10 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 488, + "start": 35, + "tree_index": 11 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 509, + "start": 494, + "tree_index": 12 + }, + { + "classes": [], + "depth": 3, + "end": 33, + "start": 25, + "tree_index": 18 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 3, + "end": 97, + "start": 48, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 195, + "start": 99, + "tree_index": 20 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 225, + "start": 205, + "tree_index": 21 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 274, + "start": 234, + "tree_index": 22 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 328, + "start": 283, + "tree_index": 23 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 439, + "start": 330, + "tree_index": 24 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 488, + "start": 441, + "tree_index": 25 + }, + { + "classes": [], + "depth": 3, + "end": 509, + "start": 494, + "tree_index": 26 + }, + { + "classes": [], + "depth": 4, + "end": 28, + "start": 25, + "tree_index": 30 + }, + { + "classes": [], + "depth": 4, + "end": 32, + "start": 29, + "tree_index": 31 + }, + { + "classes": [], + "depth": 4, + "end": 73, + "start": 65, + "tree_index": 33 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 97, + "start": 87, + "tree_index": 34 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 195, + "start": 128, + "tree_index": 35 + }, + { + "classes": [], + "depth": 4, + "end": 225, + "start": 205, + "tree_index": 36 + }, + { + "classes": [], + "depth": 4, + "end": 274, + "start": 234, + "tree_index": 37 + }, + { + "classes": [], + "depth": 4, + "end": 328, + "start": 283, + "tree_index": 38 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 388, + "start": 379, + "tree_index": 40 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 415, + "start": 401, + "tree_index": 41 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 439, + "start": 428, + "tree_index": 42 + }, + { + "classes": [], + "depth": 4, + "end": 343, + "start": 339, + "tree_index": 43 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 488, + "start": 476, + "tree_index": 45 + }, + { + "classes": [], + "depth": 4, + "end": 507, + "start": 494, + "tree_index": 46 + }, + { + "classes": [], + "depth": 5, + "end": 70, + "start": 65, + "tree_index": 51 + }, + { + "classes": [], + "depth": 5, + "end": 97, + "start": 87, + "tree_index": 53 + }, + { + "classes": [], + "depth": 5, + "end": 195, + "start": 128, + "tree_index": 54 + }, + { + "classes": [], + "depth": 5, + "end": 218, + "start": 206, + "tree_index": 55 + }, + { + "classes": [], + "depth": 5, + "end": 270, + "start": 235, + "tree_index": 57 + }, + { + "classes": [], + "depth": 5, + "end": 286, + "start": 283, + "tree_index": 59 + }, + { + "classes": [], + "depth": 5, + "end": 327, + "start": 287, + "tree_index": 60 + }, + { + "classes": [], + "depth": 5, + "end": 388, + "start": 383, + "tree_index": 63 + }, + { + "classes": [], + "depth": 5, + "end": 415, + "start": 401, + "tree_index": 64 + }, + { + "classes": [], + "depth": 5, + "end": 439, + "start": 435, + "tree_index": 65 + }, + { + "classes": [], + "depth": 5, + "end": 488, + "start": 483, + "tree_index": 68 + }, + { + "classes": [], + "depth": 5, + "end": 503, + "start": 494, + "tree_index": 69 + }, + { + "classes": [], + "depth": 6, + "end": 90, + "start": 87, + "tree_index": 72 + }, + { + "classes": [], + "depth": 6, + "end": 96, + "start": 91, + "tree_index": 73 + }, + { + "classes": [], + "depth": 6, + "end": 131, + "start": 128, + "tree_index": 74 + }, + { + "classes": [], + "depth": 6, + "end": 194, + "start": 132, + "tree_index": 75 + }, + { + "classes": [], + "depth": 6, + "end": 270, + "start": 245, + "tree_index": 79 + }, + { + "classes": [], + "depth": 6, + "end": 308, + "start": 288, + "tree_index": 81 + }, + { + "classes": [ + "loop" + ], + "depth": 6, + "end": 326, + "start": 309, + "tree_index": 82 + }, + { + "classes": [], + "depth": 6, + "end": 404, + "start": 401, + "tree_index": 87 + }, + { + "classes": [], + "depth": 6, + "end": 414, + "start": 405, + "tree_index": 88 + }, + { + "classes": [], + "depth": 6, + "end": 501, + "start": 494, + "tree_index": 93 + }, + { + "classes": [], + "depth": 7, + "end": 92, + "start": 91, + "tree_index": 95 + }, + { + "classes": [], + "depth": 7, + "end": 96, + "start": 95, + "tree_index": 97 + }, + { + "classes": [], + "depth": 7, + "end": 158, + "start": 133, + "tree_index": 99 + }, + { + "classes": [ + "loop" + ], + "depth": 7, + "end": 193, + "start": 176, + "tree_index": 100 + }, + { + "classes": [], + "depth": 7, + "end": 251, + "start": 246, + "tree_index": 103 + }, + { + "classes": [ + "loop" + ], + "depth": 7, + "end": 269, + "start": 252, + "tree_index": 104 + }, + { + "classes": [], + "depth": 7, + "end": 304, + "start": 289, + "tree_index": 105 + }, + { + "classes": [], + "depth": 7, + "end": 326, + "start": 318, + "tree_index": 108 + }, + { + "classes": [], + "depth": 7, + "end": 410, + "start": 405, + "tree_index": 110 + }, + { + "classes": [], + "depth": 7, + "end": 414, + "start": 413, + "tree_index": 112 + }, + { + "classes": [], + "depth": 7, + "end": 497, + "start": 494, + "tree_index": 113 + }, + { + "classes": [], + "depth": 8, + "end": 139, + "start": 134, + "tree_index": 117 + }, + { + "classes": [ + "loop" + ], + "depth": 8, + "end": 157, + "start": 140, + "tree_index": 118 + }, + { + "classes": [], + "depth": 8, + "end": 193, + "start": 185, + "tree_index": 120 + }, + { + "classes": [], + "depth": 8, + "end": 247, + "start": 246, + "tree_index": 121 + }, + { + "classes": [], + "depth": 8, + "end": 251, + "start": 250, + "tree_index": 123 + }, + { + "classes": [], + "depth": 8, + "end": 269, + "start": 261, + "tree_index": 125 + }, + { + "classes": [], + "depth": 8, + "end": 304, + "start": 299, + "tree_index": 127 + }, + { + "classes": [], + "depth": 8, + "end": 323, + "start": 318, + "tree_index": 129 + }, + { + "classes": [], + "depth": 8, + "end": 495, + "start": 494, + "tree_index": 135 + }, + { + "classes": [], + "depth": 9, + "end": 135, + "start": 134, + "tree_index": 136 + }, + { + "classes": [], + "depth": 9, + "end": 157, + "start": 149, + "tree_index": 140 + }, + { + "classes": [], + "depth": 9, + "end": 190, + "start": 185, + "tree_index": 142 + }, + { + "classes": [], + "depth": 9, + "end": 266, + "start": 261, + "tree_index": 147 + }, + { + "classes": [], + "depth": 9, + "end": 300, + "start": 299, + "tree_index": 150 + }, + { + "classes": [], + "depth": 9, + "end": 304, + "start": 303, + "tree_index": 152 + }, + { + "classes": [], + "depth": 10, + "end": 154, + "start": 149, + "tree_index": 157 + }, + { + "classes": [], + "depth": 10, + "end": 156, + "start": 155, + "tree_index": 158 + } + ] + }, + "html_body": "def m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()", + "lineno": 8, + "name": "m" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "f", + ".A.foo at 0xABC>" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "15": [ + ".A.foo at 0xABC>", + "function", + {} + ], + "7": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 1, + "end": 25, + "start": 0, + "tree_index": 2 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 25, + "start": 17, + "tree_index": 7 + }, + { + "classes": [], + "depth": 3, + "end": 25, + "start": 24, + "tree_index": 15 + } + ] + }, + "html_body": "def deco(f):\n return f", + "lineno": 4, + "name": "deco" + }, + "return_value": ".A.foo at 0xABC>", + "traceback": null + }, + { + "arguments": [ + [ + "self", + ".A object at 0xABC>" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "45": [ + "", + -2, + {} + ], + "68": [ + "4", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 39, + "start": 27, + "tree_index": 45 + }, + { + "classes": [], + "depth": 5, + "end": 39, + "start": 34, + "tree_index": 68 + } + ] + }, + "html_body": " def bar(self):\n return 1 + 3", + "lineno": 30, + "name": "bar" + }, + "return_value": "4", + "traceback": null + } +] \ No newline at end of file diff --git a/tests/golden-files/3.12/gold.json b/tests/golden-files/3.12/gold.json new file mode 100644 index 0000000..4792f3b --- /dev/null +++ b/tests/golden-files/3.12/gold.json @@ -0,0 +1,13897 @@ +[ + { + "arguments": [], + "data": { + "loop_iterations": { + "240": [ + { + "index": 0, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 1, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 97, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 98, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + }, + { + "index": 99, + "loops": { + "335": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 97, + "loops": {} + }, + { + "index": 98, + "loops": {} + }, + { + "index": 99, + "loops": {} + } + ] + } + } + ], + "340": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "343": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "347": [ + { + "index": 0, + "loops": {} + } + ], + "46": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ] + } + }, + { + "index": 97, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 191, + "loops": {} + }, + { + "index": 192, + "loops": {} + }, + { + "index": 193, + "loops": {} + } + ] + } + }, + { + "index": 98, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 193, + "loops": {} + }, + { + "index": 194, + "loops": {} + }, + { + "index": 195, + "loops": {} + } + ] + } + }, + { + "index": 99, + "loops": { + "128": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 195, + "loops": {} + }, + { + "index": 196, + "loops": {} + }, + { + "index": 197, + "loops": {} + } + ] + } + } + ], + "47": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + } + ], + "66": [ + { + "index": 0, + "loops": {} + } + ] + }, + "node_values": { + "122": [ + "True", + "bool", + {} + ], + "126": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "127": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "128": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "130": [ + "range(0, 6)", + "range", + { + "len": 6 + } + ], + "131": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "132": { + "1": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "134": [ + "", + "MyClass", + { + "inner_calls": [ + "test_id_5" + ] + } + ], + "136": [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "3", + [ + "[3, 4, 5, ..., 100, 101, 102]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "3", + "int", + {} + ] + ], + [ + "1", + [ + "4", + "int", + {} + ] + ], + [ + "2", + [ + "5", + "int", + {} + ] + ], + [ + "97", + [ + "100", + "int", + {} + ] + ], + [ + "98", + [ + "101", + "int", + {} + ] + ], + [ + "99", + [ + "102", + "int", + {} + ] + ] + ] + ], + [ + "4", + [ + "[4, 5, 6, ..., 101, 102, 103]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "4", + "int", + {} + ] + ], + [ + "1", + [ + "5", + "int", + {} + ] + ], + [ + "2", + [ + "6", + "int", + {} + ] + ], + [ + "97", + [ + "101", + "int", + {} + ] + ], + [ + "98", + [ + "102", + "int", + {} + ] + ], + [ + "99", + [ + "103", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 192, 193, 194]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "97", + [ + "192", + "int", + {} + ] + ], + [ + "98", + [ + "193", + "int", + {} + ] + ], + [ + "99", + [ + "194", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 193, 194, 195]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "97", + [ + "193", + "int", + {} + ] + ], + [ + "98", + [ + "194", + "int", + {} + ] + ], + [ + "99", + [ + "195", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ], + "137": [ + "6", + "int", + {} + ], + "138": [ + "None", + "NoneType", + {} + ], + "139": [ + "None", + "NoneType", + {} + ], + "141": [ + "", + -2, + {} + ], + "142": [ + "None", + "NoneType", + {} + ], + "143": [ + "True", + "bool", + {} + ], + "144": [ + "True", + "bool", + {} + ], + "145": [ + "True", + "bool", + {} + ], + "151": [ + "True", + "bool", + {} + ], + "153": [ + "None", + "NoneType", + {} + ], + "154": [ + "True", + "bool", + {} + ], + "155": [ + "True", + "bool", + {} + ], + "156": [ + "ValueError", + -1, + {} + ], + "160": [ + "", + -2, + {} + ], + "162": { + "0": [ + "", + -2, + {} + ] + }, + "163": [ + "True", + "bool", + {} + ], + "166": [ + "True", + "bool", + {} + ], + "168": [ + "", + "generator", + {} + ], + "169": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_11" + ] + } + ], + "170": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_13" + ] + } + ], + "213": [ + "6", + "int", + { + "inner_calls": [ + "test_id_2" + ] + } + ], + "221": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "223": { + "0": [ + "range(0, 0)", + "range", + { + "len": 0 + } + ], + "1": [ + "range(0, 2)", + "range", + { + "len": 2 + } + ], + "2": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "3": [ + "range(0, 194)", + "range", + { + "len": 194 + } + ], + "4": [ + "range(0, 196)", + "range", + { + "len": 196 + } + ], + "5": [ + "range(0, 198)", + "range", + { + "len": 198 + } + ] + }, + "224": { + "1": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ] + }, + "2": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "3": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "4": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "5": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + } + }, + "225": { + "1": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ] + }, + "2": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "3": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "4": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "5": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + } + }, + "229": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ] + }, + "231": { + "1": [ + "False", + "bool", + {} + ], + "3": [ + "True", + "bool", + {} + ] + }, + "232": { + "3": [ + "", + -2, + {} + ] + }, + "234": [ + "", + "MyClass", + {} + ], + "236": [ + "", + "MyClass", + {} + ], + "237": [ + "", + "MyClass", + {} + ], + "239": { + "0": [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "95", + [ + "95", + "int", + {} + ] + ], + [ + "96", + [ + "96", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ], + "1": [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ], + "2": [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ], + "3": [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ], + "4": [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ], + "5": [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + }, + "240": [ + "", + -2, + {} + ], + "242": [ + ". at 0xABC>", + "generator", + {} + ], + "243": [ + "", + "function", + {} + ], + "244": [ + "{0, 1, 2, 3}", + "set", + { + "len": 4 + }, + [ + "<0>", + [ + "0", + "int", + {} + ] + ], + [ + "<1>", + [ + "1", + "int", + {} + ] + ], + [ + "<2>", + [ + "2", + "int", + {} + ] + ], + [ + "<3>", + [ + "3", + "int", + {} + ] + ] + ], + "245": [ + "", + "function", + {} + ], + "246": [ + "{0: 0}", + "dict", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ], + "247": [ + "", + "MyClass", + {}, + [ + "list", + [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ] + ] + ], + "248": [ + "", + "function", + {} + ], + "249": [ + "", + "SlotClass", + { + "inner_calls": [ + "test_id_8" + ] + }, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ], + "250": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "inner_calls": [ + "test_id_9" + ], + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ], + "252": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ], + "253": [ + "[1, 2, {'k': 23}]", + "list", + { + "inner_calls": [ + "test_id_10" + ], + "len": 3 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ] + ] + ], + "256": [ + "3", + "int", + {} + ], + "261": [ + "6", + "int", + {} + ], + "265": [ + "", + "function", + {} + ], + "269": [ + "2", + "int", + {} + ], + "272": [ + "(1, 2)", + "tuple", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ], + "275": [ + "ValueError()", + "ValueError", + {} + ], + "280": [ + "", + -2, + {} + ], + "281": [ + "None", + "NoneType", + {} + ], + "282": [ + "8", + "int", + {} + ], + "286": [ + "4", + "int", + {} + ], + "290": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "291": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "292": [ + "", + "generator", + {} + ], + "293": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "294": [ + "", + "generator", + {} + ], + "314": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "317": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "321": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "194", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "198", + "int", + {} + ] + }, + "322": { + "1": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ] + }, + "2": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "3": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "4": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "5": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + } + }, + "323": { + "1": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ] + }, + "2": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "3": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "4": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "5": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + } + }, + "325": { + "1": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ] + }, + "327": { + "0": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "328": { + "1": [ + "1", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "331": [ + "", + "type", + {}, + [ + "__add__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__enter__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__exit__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ], + "332": [ + "", + "type", + {}, + [ + "__add__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__enter__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__exit__", + [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ], + "334": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "3", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "100", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "3", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "100", + "int", + {} + ], + "5": [ + "101", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "194", + "int", + {} + ], + "4": [ + "195", + "int", + {} + ], + "5": [ + "196", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "100", + "int", + {} + ], + "3": [ + "195", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "197", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "100", + "int", + {} + ], + "2": [ + "101", + "int", + {} + ], + "3": [ + "196", + "int", + {} + ], + "4": [ + "197", + "int", + {} + ], + "5": [ + "198", + "int", + {} + ] + } + }, + "335": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "337": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "339": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "340": [ + "", + -2, + {} + ], + "342": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "343": [ + "", + -2, + {} + ], + "345": { + "0": [ + "0", + "int", + {} + ] + }, + "346": { + "0": [ + "0", + "int", + {} + ] + }, + "347": [ + "", + -2, + {} + ], + "350": [ + "", + "MyClass", + {}, + [ + "list", + [ + "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[0, 1, 2, ..., 97, 98, 99]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "97", + [ + "97", + "int", + {} + ] + ], + [ + "98", + [ + "98", + "int", + {} + ] + ], + [ + "99", + [ + "99", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "[1, 2, 3, ..., 98, 99, 100]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "3", + "int", + {} + ] + ], + [ + "97", + [ + "98", + "int", + {} + ] + ], + [ + "98", + [ + "99", + "int", + {} + ] + ], + [ + "99", + [ + "100", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, ..., 99, 100, 101]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "97", + [ + "99", + "int", + {} + ] + ], + [ + "98", + [ + "100", + "int", + {} + ] + ], + [ + "99", + [ + "101", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 194, 195, 196]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "97", + [ + "194", + "int", + {} + ] + ], + [ + "98", + [ + "195", + "int", + {} + ] + ], + [ + "99", + [ + "196", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 195, 196, 197]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "97", + [ + "195", + "int", + {} + ] + ], + [ + "98", + [ + "196", + "int", + {} + ] + ], + [ + "99", + [ + "197", + "int", + {} + ] + ] + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 196, 197, 198]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "97", + [ + "196", + "int", + {} + ] + ], + [ + "98", + [ + "197", + "int", + {} + ] + ], + [ + "99", + [ + "198", + "int", + {} + ] + ] + ] + ] + ] + ] + ], + "352": [ + "", + "SlotClass", + {}, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ], + "353": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "354": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "358": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "360": [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ], + "362": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "370": [ + "'1 + 2'", + "str", + { + "len": 5 + } + ], + "385": [ + "", + "function", + {} + ], + "386": [ + ". at 0xABC>", + "function", + {} + ], + "405": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[[]]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "2": [ + "[[], [1, 2]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", + "list", + { + "len": 97 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "94", + [ + "[94, 95, 96, ..., 279, 280, 281]", + "list", + { + "len": 188 + }, + [ + "0", + [ + "94", + "int", + {} + ] + ], + [ + "1", + [ + "95", + "int", + {} + ] + ], + [ + "2", + [ + "96", + "int", + {} + ] + ], + [ + "185", + [ + "279", + "int", + {} + ] + ], + [ + "186", + [ + "280", + "int", + {} + ] + ], + [ + "187", + [ + "281", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "187", + [ + "282", + "int", + {} + ] + ], + [ + "188", + [ + "283", + "int", + {} + ] + ], + [ + "189", + [ + "284", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + }, + [ + "0", + [ + "95", + "int", + {} + ] + ], + [ + "1", + [ + "96", + "int", + {} + ] + ], + [ + "2", + [ + "97", + "int", + {} + ] + ], + [ + "187", + [ + "282", + "int", + {} + ] + ], + [ + "188", + [ + "283", + "int", + {} + ] + ], + [ + "189", + [ + "284", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ], + [ + "193", + [ + "290", + "int", + {} + ] + ] + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ], + [ + "3", + [ + "5", + "int", + {} + ] + ] + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "96", + "int", + {} + ] + ], + [ + "1", + [ + "97", + "int", + {} + ] + ], + [ + "2", + [ + "98", + "int", + {} + ] + ], + [ + "189", + [ + "285", + "int", + {} + ] + ], + [ + "190", + [ + "286", + "int", + {} + ] + ], + [ + "191", + [ + "287", + "int", + {} + ] + ] + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ], + [ + "193", + [ + "290", + "int", + {} + ] + ] + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ], + [ + "194", + [ + "292", + "int", + {} + ] + ], + [ + "195", + [ + "293", + "int", + {} + ] + ] + ] + ] + ] + }, + "411": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "412": { + "1": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ] + }, + "2": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ] + }, + "3": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "4": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + }, + "5": { + "0": [ + "", + "builtin_function_or_method", + {} + ], + "1": [ + "", + "builtin_function_or_method", + {} + ], + "2": [ + "", + "builtin_function_or_method", + {} + ], + "3": [ + "", + "builtin_function_or_method", + {} + ], + "4": [ + "", + "builtin_function_or_method", + {} + ], + "5": [ + "", + "builtin_function_or_method", + {} + ] + } + }, + "413": { + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "3", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ], + "3": [ + "5", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "288", + "int", + {} + ], + "4": [ + "289", + "int", + {} + ], + "5": [ + "290", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "100", + "int", + {} + ], + "3": [ + "291", + "int", + {} + ], + "4": [ + "292", + "int", + {} + ], + "5": [ + "293", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "100", + "int", + {} + ], + "2": [ + "101", + "int", + {} + ], + "3": [ + "294", + "int", + {} + ], + "4": [ + "295", + "int", + {} + ], + "5": [ + "296", + "int", + {} + ] + } + }, + "414": { + "1": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ] + }, + "2": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ] + }, + "3": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + }, + "4": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + }, + "5": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ], + "4": [ + "", + "function", + {} + ], + "5": [ + "", + "function", + {} + ] + } + }, + "415": { + "1": { + "0": [ + "[[], [1]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ] + ] + }, + "2": { + "0": [ + "[[], [1, 2], [2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ] + ] + }, + "3": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ] + ] + }, + "4": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ] + ] + }, + "5": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99]", + "list", + { + "len": 1 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100]", + "list", + { + "len": 2 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101]", + "list", + { + "len": 3 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 294, 295, 296]", + "list", + { + "len": 198 + } + ] + ] + ] + } + }, + "416": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ], + "3": [ + "", + "function", + {} + ] + }, + "417": { + "1": [ + "11.0", + "float", + {} + ], + "3": [ + "11.0", + "float", + {} + ] + }, + "422": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "1": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "3": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "4": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + }, + "5": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "424": { + "0": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "0", + "int", + {} + ], + "2": [ + "0", + "int", + {} + ], + "3": [ + "0", + "int", + {} + ], + "4": [ + "0", + "int", + {} + ], + "5": [ + "0", + "int", + {} + ] + }, + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "1", + "int", + {} + ], + "3": [ + "1", + "int", + {} + ], + "4": [ + "1", + "int", + {} + ], + "5": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "2", + "int", + {} + ], + "4": [ + "2", + "int", + {} + ], + "5": [ + "2", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "97", + "int", + {} + ], + "2": [ + "97", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "97", + "int", + {} + ], + "5": [ + "97", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "98", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "98", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "426": { + "0": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "1": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "2": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "3": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "4": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ], + "5": [ + "range(0, 100)", + "range", + { + "len": 100 + } + ] + }, + "432": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "435": [ + "range(0, 4)", + "range", + { + "len": 4 + } + ], + "439": [ + "range(0, 1)", + "range", + { + "len": 1 + } + ], + "44": [ + "", + -2, + {} + ], + "441": [ + "", + "type", + {}, + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__init__", + [ + "", + "function", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.gold'", + "str", + { + "len": 17 + } + ] + ], + [ + "__slots__", + [ + "('slot1',)", + "tuple", + { + "len": 1 + }, + [ + "0", + [ + "'slot1'", + "str", + { + "len": 5 + } + ] + ] + ] + ], + [ + "slot1", + [ + "", + "member_descriptor", + {} + ] + ] + ], + "444": [ + "range(0, 1000)", + "range", + { + "len": 1000 + } + ], + "448": [ + "range(0, 1000)", + "range", + { + "len": 1000 + } + ], + "45": [ + "", + -2, + {} + ], + "46": [ + "", + -2, + {} + ], + "47": [ + "", + -2, + {} + ], + "477": { + "1": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[1]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ] + ] + }, + "2": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[2]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ] + ], + "2": [ + "[2, 3]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ] + ], + "3": [ + "[2, 3, 4]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "2", + "int", + {} + ] + ], + [ + "1", + [ + "3", + "int", + {} + ] + ], + [ + "2", + [ + "4", + "int", + {} + ] + ] + ] + }, + "3": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[97]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ] + ], + "2": [ + "[97, 98]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ] + ], + "3": [ + "[97, 98, 99, ..., 285, 286, 287]", + "list", + { + "len": 191 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "188", + [ + "285", + "int", + {} + ] + ], + [ + "189", + [ + "286", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ] + ], + "4": [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "189", + [ + "286", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ] + ], + "5": [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + }, + [ + "0", + [ + "97", + "int", + {} + ] + ], + [ + "1", + [ + "98", + "int", + {} + ] + ], + [ + "2", + [ + "99", + "int", + {} + ] + ], + [ + "190", + [ + "287", + "int", + {} + ] + ], + [ + "191", + [ + "288", + "int", + {} + ] + ], + [ + "192", + [ + "289", + "int", + {} + ] + ] + ] + }, + "4": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[98]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ] + ], + "2": [ + "[98, 99]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ] + ], + "3": [ + "[98, 99, 100, ..., 288, 289, 290]", + "list", + { + "len": 193 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "190", + [ + "288", + "int", + {} + ] + ], + [ + "191", + [ + "289", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ] + ], + "4": [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "191", + [ + "289", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ] + ], + "5": [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + }, + [ + "0", + [ + "98", + "int", + {} + ] + ], + [ + "1", + [ + "99", + "int", + {} + ] + ], + [ + "2", + [ + "100", + "int", + {} + ] + ], + [ + "192", + [ + "290", + "int", + {} + ] + ], + [ + "193", + [ + "291", + "int", + {} + ] + ], + [ + "194", + [ + "292", + "int", + {} + ] + ] + ] + }, + "5": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[99]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ] + ], + "2": [ + "[99, 100]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ] + ], + "3": [ + "[99, 100, 101, ..., 291, 292, 293]", + "list", + { + "len": 195 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "192", + [ + "291", + "int", + {} + ] + ], + [ + "193", + [ + "292", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ] + ], + "4": [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "193", + [ + "292", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ], + [ + "195", + [ + "294", + "int", + {} + ] + ] + ], + "5": [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + }, + [ + "0", + [ + "99", + "int", + {} + ] + ], + [ + "1", + [ + "100", + "int", + {} + ] + ], + [ + "2", + [ + "101", + "int", + {} + ] + ], + [ + "194", + [ + "293", + "int", + {} + ] + ], + [ + "195", + [ + "294", + "int", + {} + ] + ], + [ + "196", + [ + "295", + "int", + {} + ] + ] + ] + } + }, + "479": { + "1": { + "0": [ + "1", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "2", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "2", + "int", + {} + ] + }, + "3": { + "0": [ + "97", + "int", + {} + ], + "1": [ + "97", + "int", + {} + ], + "2": [ + "97", + "int", + {} + ], + "3": [ + "97", + "int", + {} + ], + "4": [ + "97", + "int", + {} + ], + "5": [ + "97", + "int", + {} + ] + }, + "4": { + "0": [ + "98", + "int", + {} + ], + "1": [ + "98", + "int", + {} + ], + "2": [ + "98", + "int", + {} + ], + "3": [ + "98", + "int", + {} + ], + "4": [ + "98", + "int", + {} + ], + "5": [ + "98", + "int", + {} + ] + }, + "5": { + "0": [ + "99", + "int", + {} + ], + "1": [ + "99", + "int", + {} + ], + "2": [ + "99", + "int", + {} + ], + "3": [ + "99", + "int", + {} + ], + "4": [ + "99", + "int", + {} + ], + "5": [ + "99", + "int", + {} + ] + } + }, + "48": [ + "", + -2, + {} + ], + "481": { + "1": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "3": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "191", + "int", + {} + ], + "4": [ + "192", + "int", + {} + ], + "5": [ + "193", + "int", + {} + ] + }, + "4": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "193", + "int", + {} + ], + "4": [ + "194", + "int", + {} + ], + "5": [ + "195", + "int", + {} + ] + }, + "5": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "195", + "int", + {} + ], + "4": [ + "196", + "int", + {} + ], + "5": [ + "197", + "int", + {} + ] + } + }, + "485": { + "0": [ + "ZeroDivisionError: division by zero", + -1, + {} + ], + "1": [ + "1.0", + "float", + {} + ], + "2": [ + "ZeroDivisionError: division by zero", + -1, + {} + ], + "3": [ + "1.0", + "float", + {} + ] + }, + "49": [ + "", + -2, + {} + ], + "50": [ + "", + -2, + {} + ], + "51": [ + "", + -2, + {} + ], + "52": [ + "", + -2, + {} + ], + "526": { + "1": { + "0": [ + "[[], []]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1]]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1]", + "list", + { + "len": 1 + } + ] + ] + ] + }, + "2": { + "0": [ + "[[], [1, 2], []]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4]", + "list", + { + "len": 3 + } + ] + ] + ] + }, + "3": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 285, 286, 287]", + "list", + { + "len": 191 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 286, 287, 288]", + "list", + { + "len": 192 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", + "list", + { + "len": 98 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "95", + [ + "[95, 96, 97, ..., 282, 283, 284]", + "list", + { + "len": 190 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 287, 288, 289]", + "list", + { + "len": 193 + } + ] + ] + ] + }, + "4": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 288, 289, 290]", + "list", + { + "len": 193 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 289, 290, 291]", + "list", + { + "len": 194 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", + "list", + { + "len": 99 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "96", + [ + "[96, 97, 98, ..., 285, 286, 287]", + "list", + { + "len": 192 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 290, 291, 292]", + "list", + { + "len": 195 + } + ] + ] + ] + }, + "5": { + "0": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[]", + "list", + { + "len": 0 + } + ] + ] + ], + "1": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99]", + "list", + { + "len": 1 + } + ] + ] + ], + "2": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100]", + "list", + { + "len": 2 + } + ] + ] + ], + "3": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 291, 292, 293]", + "list", + { + "len": 195 + } + ] + ] + ], + "4": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 292, 293, 294]", + "list", + { + "len": 196 + } + ] + ] + ], + "5": [ + "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", + "list", + { + "len": 100 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[1, 2]", + "list", + { + "len": 2 + } + ] + ], + [ + "2", + [ + "[2, 3, 4, 5]", + "list", + { + "len": 4 + } + ] + ], + [ + "97", + [ + "[97, 98, 99, ..., 288, 289, 290]", + "list", + { + "len": 194 + } + ] + ], + [ + "98", + [ + "[98, 99, 100, ..., 291, 292, 293]", + "list", + { + "len": 196 + } + ] + ], + [ + "99", + [ + "[99, 100, 101, ..., 293, 294, 295]", + "list", + { + "len": 197 + } + ] + ] + ] + } + }, + "53": [ + "", + -2, + { + "inner_calls": [ + "test_id_6", + "test_id_7" + ] + } + ], + "533": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "0", + "int", + {} + ], + "3": [ + "1", + "int", + {} + ] + }, + "54": [ + "", + -2, + {} + ], + "546": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ] + }, + "55": [ + "", + -2, + {} + ], + "56": [ + "", + -2, + {} + ], + "57": [ + "", + -2, + {} + ], + "58": [ + "", + -2, + {} + ], + "59": [ + "", + -2, + {} + ], + "60": [ + "", + -2, + {} + ], + "61": [ + "", + -2, + {} + ], + "62": [ + "", + -2, + {} + ], + "63": [ + "", + -2, + {} + ], + "64": [ + "", + -2, + {} + ], + "65": [ + "", + -2, + {} + ], + "66": [ + "", + -2, + {} + ], + "67": [ + "", + -2, + {} + ], + "68": [ + "", + -2, + {} + ], + "69": [ + "", + -2, + {} + ], + "70": [ + "", + -2, + {} + ], + "71": [ + "", + -2, + {} + ], + "72": [ + "", + -2, + {} + ], + "73": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 65, + "start": 64, + "tree_index": 46 + }, + { + "end": 205, + "start": 204, + "tree_index": 47 + }, + { + "end": 1254, + "start": 1250, + "tree_index": 66 + }, + { + "end": 118, + "start": 117, + "tree_index": 128 + }, + { + "end": 438, + "start": 437, + "tree_index": 240 + }, + { + "end": 417, + "start": 416, + "tree_index": 335 + }, + { + "end": 471, + "start": 470, + "tree_index": 340 + }, + { + "end": 503, + "start": 502, + "tree_index": 343 + }, + { + "end": 539, + "start": 538, + "tree_index": 347 + } + ], + "node_loops": { + "127": [ + 46 + ], + "128": [ + 46 + ], + "131": [ + 47 + ], + "132": [ + 47 + ], + "162": [ + 66 + ], + "221": [ + 46 + ], + "223": [ + 46 + ], + "224": [ + 46, + 128 + ], + "225": [ + 46, + 128 + ], + "229": [ + 47 + ], + "231": [ + 47 + ], + "232": [ + 47 + ], + "239": [ + 240 + ], + "317": [ + 46 + ], + "320": [ + 46 + ], + "321": [ + 46 + ], + "322": [ + 46, + 128 + ], + "323": [ + 46, + 128 + ], + "325": [ + 47 + ], + "326": [ + 47 + ], + "327": [ + 47 + ], + "328": [ + 47 + ], + "334": [ + 240, + 335 + ], + "335": [ + 240 + ], + "339": [ + 340 + ], + "342": [ + 343 + ], + "345": [ + 347 + ], + "346": [ + 347 + ], + "405": [ + 46 + ], + "411": [ + 46 + ], + "412": [ + 46, + 128 + ], + "413": [ + 46, + 128 + ], + "414": [ + 46, + 128 + ], + "415": [ + 46, + 128 + ], + "416": [ + 47 + ], + "417": [ + 47 + ], + "422": [ + 240, + 335 + ], + "424": [ + 240, + 335 + ], + "426": [ + 240 + ], + "477": [ + 46, + 128 + ], + "479": [ + 46, + 128 + ], + "481": [ + 46, + 128 + ], + "485": [ + 47 + ], + "491": [ + 240 + ], + "526": [ + 46, + 128 + ], + "533": [ + 47 + ], + "546": [ + 47 + ] + }, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 40, + "start": 16, + "tree_index": 44 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 55, + "start": 46, + "tree_index": 45 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 194, + "start": 56, + "tree_index": 46 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 359, + "start": 196, + "tree_index": 47 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 390, + "start": 365, + "tree_index": 48 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 453, + "start": 395, + "tree_index": 49 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 484, + "start": 458, + "tree_index": 50 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 517, + "start": 489, + "tree_index": 51 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 553, + "start": 522, + "tree_index": 52 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 578, + "start": 554, + "tree_index": 53 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 605, + "start": 583, + "tree_index": 54 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 812, + "start": 611, + "tree_index": 55 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 880, + "start": 818, + "tree_index": 56 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 922, + "start": 886, + "tree_index": 57 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 933, + "start": 928, + "tree_index": 58 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 944, + "start": 938, + "tree_index": 59 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 962, + "start": 949, + "tree_index": 60 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 972, + "start": 967, + "tree_index": 61 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1002, + "start": 978, + "tree_index": 62 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1032, + "start": 1008, + "tree_index": 63 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1067, + "start": 1037, + "tree_index": 64 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1238, + "start": 1069, + "tree_index": 65 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 1269, + "start": 1240, + "tree_index": 66 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1307, + "start": 1275, + "tree_index": 67 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1321, + "start": 1313, + "tree_index": 68 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1331, + "start": 1326, + "tree_index": 69 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1349, + "start": 1336, + "tree_index": 70 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1364, + "start": 1355, + "tree_index": 71 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1381, + "start": 1369, + "tree_index": 72 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 1398, + "start": 1386, + "tree_index": 73 + }, + { + "classes": [], + "depth": 3, + "end": 40, + "start": 23, + "tree_index": 122 + }, + { + "classes": [], + "depth": 3, + "end": 79, + "start": 69, + "tree_index": 126 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 104, + "start": 89, + "tree_index": 127 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 3, + "end": 194, + "start": 105, + "tree_index": 128 + }, + { + "classes": [], + "depth": 3, + "end": 217, + "start": 209, + "tree_index": 130 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 322, + "start": 219, + "tree_index": 131 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 359, + "start": 323, + "tree_index": 132 + }, + { + "classes": [], + "depth": 3, + "end": 390, + "start": 369, + "tree_index": 134 + }, + { + "classes": [], + "depth": 3, + "end": 453, + "start": 404, + "tree_index": 136 + }, + { + "classes": [], + "depth": 3, + "end": 484, + "start": 458, + "tree_index": 137 + }, + { + "classes": [], + "depth": 3, + "end": 517, + "start": 489, + "tree_index": 138 + }, + { + "classes": [], + "depth": 3, + "end": 553, + "start": 522, + "tree_index": 139 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 578, + "start": 574, + "tree_index": 141 + }, + { + "classes": [], + "depth": 3, + "end": 605, + "start": 583, + "tree_index": 142 + }, + { + "classes": [], + "depth": 3, + "end": 812, + "start": 618, + "tree_index": 143 + }, + { + "classes": [], + "depth": 3, + "end": 880, + "start": 825, + "tree_index": 144 + }, + { + "classes": [], + "depth": 3, + "end": 922, + "start": 893, + "tree_index": 145 + }, + { + "classes": [], + "depth": 3, + "end": 962, + "start": 956, + "tree_index": 151 + }, + { + "classes": [], + "depth": 3, + "end": 1002, + "start": 978, + "tree_index": 153 + }, + { + "classes": [], + "depth": 3, + "end": 1032, + "start": 1015, + "tree_index": 154 + }, + { + "classes": [], + "depth": 3, + "end": 1067, + "start": 1044, + "tree_index": 155 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1104, + "start": 1086, + "tree_index": 156 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1238, + "start": 1231, + "tree_index": 160 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 1269, + "start": 1264, + "tree_index": 162 + }, + { + "classes": [], + "depth": 3, + "end": 1307, + "start": 1282, + "tree_index": 163 + }, + { + "classes": [], + "depth": 3, + "end": 1349, + "start": 1343, + "tree_index": 166 + }, + { + "classes": [], + "depth": 3, + "end": 1364, + "start": 1359, + "tree_index": 168 + }, + { + "classes": [], + "depth": 3, + "end": 1381, + "start": 1369, + "tree_index": 169 + }, + { + "classes": [], + "depth": 3, + "end": 1398, + "start": 1386, + "tree_index": 170 + }, + { + "classes": [], + "depth": 4, + "end": 35, + "start": 23, + "tree_index": 213 + }, + { + "classes": [], + "depth": 4, + "end": 74, + "start": 69, + "tree_index": 219 + }, + { + "classes": [], + "depth": 4, + "end": 104, + "start": 89, + "tree_index": 221 + }, + { + "classes": [], + "depth": 4, + "end": 134, + "start": 122, + "tree_index": 223 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 170, + "start": 148, + "tree_index": 224 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 194, + "start": 183, + "tree_index": 225 + }, + { + "classes": [], + "depth": 4, + "end": 214, + "start": 209, + "tree_index": 227 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 267, + "start": 244, + "tree_index": 229 + }, + { + "classes": [], + "depth": 4, + "end": 340, + "start": 334, + "tree_index": 231 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 359, + "start": 354, + "tree_index": 232 + }, + { + "classes": [], + "depth": 4, + "end": 378, + "start": 369, + "tree_index": 234 + }, + { + "classes": [], + "depth": 4, + "end": 390, + "start": 381, + "tree_index": 236 + }, + { + "classes": [], + "depth": 4, + "end": 396, + "start": 395, + "tree_index": 237 + }, + { + "classes": [], + "depth": 4, + "end": 432, + "start": 405, + "tree_index": 239 + }, + { + "classes": [ + "loop" + ], + "depth": 4, + "end": 452, + "start": 433, + "tree_index": 240 + }, + { + "classes": [], + "depth": 4, + "end": 461, + "start": 458, + "tree_index": 241 + }, + { + "classes": [], + "depth": 4, + "end": 484, + "start": 463, + "tree_index": 242 + }, + { + "classes": [], + "depth": 4, + "end": 494, + "start": 489, + "tree_index": 243 + }, + { + "classes": [], + "depth": 4, + "end": 516, + "start": 495, + "tree_index": 244 + }, + { + "classes": [], + "depth": 4, + "end": 527, + "start": 522, + "tree_index": 245 + }, + { + "classes": [], + "depth": 4, + "end": 552, + "start": 528, + "tree_index": 246 + }, + { + "classes": [], + "depth": 4, + "end": 564, + "start": 563, + "tree_index": 247 + }, + { + "classes": [], + "depth": 4, + "end": 588, + "start": 583, + "tree_index": 248 + }, + { + "classes": [], + "depth": 4, + "end": 604, + "start": 589, + "tree_index": 249 + }, + { + "classes": [], + "depth": 4, + "end": 729, + "start": 618, + "tree_index": 250 + }, + { + "classes": [], + "depth": 4, + "end": 812, + "start": 733, + "tree_index": 252 + }, + { + "classes": [], + "depth": 4, + "end": 859, + "start": 825, + "tree_index": 253 + }, + { + "classes": [], + "depth": 4, + "end": 917, + "start": 893, + "tree_index": 256 + }, + { + "classes": [], + "depth": 4, + "end": 957, + "start": 956, + "tree_index": 261 + }, + { + "classes": [], + "depth": 4, + "end": 983, + "start": 978, + "tree_index": 265 + }, + { + "classes": [], + "depth": 4, + "end": 1027, + "start": 1015, + "tree_index": 269 + }, + { + "classes": [], + "depth": 4, + "end": 1057, + "start": 1044, + "tree_index": 272 + }, + { + "classes": [], + "depth": 4, + "end": 1104, + "start": 1092, + "tree_index": 275 + }, + { + "classes": [], + "depth": 4, + "end": 1130, + "start": 1116, + "tree_index": 276 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1149, + "start": 1145, + "tree_index": 277 + }, + { + "classes": [], + "depth": 4, + "end": 1170, + "start": 1161, + "tree_index": 278 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1184, + "start": 1180, + "tree_index": 279 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 1209, + "start": 1205, + "tree_index": 280 + }, + { + "classes": [], + "depth": 4, + "end": 1238, + "start": 1231, + "tree_index": 281 + }, + { + "classes": [], + "depth": 4, + "end": 1302, + "start": 1282, + "tree_index": 282 + }, + { + "classes": [], + "depth": 4, + "end": 1344, + "start": 1343, + "tree_index": 286 + }, + { + "classes": [], + "depth": 4, + "end": 1362, + "start": 1359, + "tree_index": 290 + }, + { + "classes": [], + "depth": 4, + "end": 1378, + "start": 1369, + "tree_index": 291 + }, + { + "classes": [], + "depth": 4, + "end": 1380, + "start": 1379, + "tree_index": 292 + }, + { + "classes": [], + "depth": 4, + "end": 1395, + "start": 1386, + "tree_index": 293 + }, + { + "classes": [], + "depth": 4, + "end": 1397, + "start": 1396, + "tree_index": 294 + }, + { + "classes": [], + "depth": 5, + "end": 32, + "start": 23, + "tree_index": 314 + }, + { + "classes": [], + "depth": 5, + "end": 100, + "start": 89, + "tree_index": 317 + }, + { + "classes": [], + "depth": 5, + "end": 127, + "start": 122, + "tree_index": 320 + }, + { + "classes": [], + "depth": 5, + "end": 133, + "start": 128, + "tree_index": 321 + }, + { + "classes": [], + "depth": 5, + "end": 170, + "start": 148, + "tree_index": 322 + }, + { + "classes": [], + "depth": 5, + "end": 194, + "start": 183, + "tree_index": 323 + }, + { + "classes": [], + "depth": 5, + "end": 267, + "start": 244, + "tree_index": 325 + }, + { + "classes": [], + "depth": 5, + "end": 300, + "start": 283, + "tree_index": 326 + }, + { + "classes": [ + "stmt" + ], + "depth": 5, + "end": 322, + "start": 314, + "tree_index": 327 + }, + { + "classes": [], + "depth": 5, + "end": 335, + "start": 334, + "tree_index": 328 + }, + { + "classes": [], + "depth": 5, + "end": 376, + "start": 369, + "tree_index": 331 + }, + { + "classes": [], + "depth": 5, + "end": 388, + "start": 381, + "tree_index": 332 + }, + { + "classes": [], + "depth": 5, + "end": 411, + "start": 406, + "tree_index": 334 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 431, + "start": 412, + "tree_index": 335 + }, + { + "classes": [], + "depth": 5, + "end": 452, + "start": 442, + "tree_index": 337 + }, + { + "classes": [], + "depth": 5, + "end": 465, + "start": 464, + "tree_index": 339 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 483, + "start": 466, + "tree_index": 340 + }, + { + "classes": [], + "depth": 5, + "end": 497, + "start": 496, + "tree_index": 342 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 515, + "start": 498, + "tree_index": 343 + }, + { + "classes": [], + "depth": 5, + "end": 530, + "start": 529, + "tree_index": 345 + }, + { + "classes": [], + "depth": 5, + "end": 533, + "start": 532, + "tree_index": 346 + }, + { + "classes": [ + "loop" + ], + "depth": 5, + "end": 551, + "start": 534, + "tree_index": 347 + }, + { + "classes": [], + "depth": 5, + "end": 590, + "start": 589, + "tree_index": 350 + }, + { + "classes": [], + "depth": 5, + "end": 604, + "start": 593, + "tree_index": 352 + }, + { + "classes": [], + "depth": 5, + "end": 630, + "start": 618, + "tree_index": 353 + }, + { + "classes": [], + "depth": 5, + "end": 657, + "start": 640, + "tree_index": 354 + }, + { + "classes": [], + "depth": 5, + "end": 751, + "start": 734, + "tree_index": 358 + }, + { + "classes": [], + "depth": 5, + "end": 811, + "start": 782, + "tree_index": 360 + }, + { + "classes": [], + "depth": 5, + "end": 837, + "start": 825, + "tree_index": 362 + }, + { + "classes": [], + "depth": 5, + "end": 845, + "start": 838, + "tree_index": 363 + }, + { + "classes": [], + "depth": 5, + "end": 897, + "start": 893, + "tree_index": 369 + }, + { + "classes": [], + "depth": 5, + "end": 916, + "start": 898, + "tree_index": 370 + }, + { + "classes": [], + "depth": 5, + "end": 1056, + "start": 1054, + "tree_index": 377 + }, + { + "classes": [], + "depth": 5, + "end": 1102, + "start": 1092, + "tree_index": 382 + }, + { + "classes": [], + "depth": 5, + "end": 1236, + "start": 1231, + "tree_index": 385 + }, + { + "classes": [], + "depth": 5, + "end": 1298, + "start": 1283, + "tree_index": 386 + }, + { + "classes": [], + "depth": 6, + "end": 93, + "start": 89, + "tree_index": 405 + }, + { + "classes": [], + "depth": 6, + "end": 133, + "start": 132, + "tree_index": 411 + }, + { + "classes": [], + "depth": 6, + "end": 163, + "start": 148, + "tree_index": 412 + }, + { + "classes": [], + "depth": 6, + "end": 169, + "start": 164, + "tree_index": 413 + }, + { + "classes": [], + "depth": 6, + "end": 188, + "start": 183, + "tree_index": 414 + }, + { + "classes": [], + "depth": 6, + "end": 193, + "start": 189, + "tree_index": 415 + }, + { + "classes": [], + "depth": 6, + "end": 249, + "start": 244, + "tree_index": 416 + }, + { + "classes": [], + "depth": 6, + "end": 266, + "start": 250, + "tree_index": 417 + }, + { + "classes": [], + "depth": 6, + "end": 407, + "start": 406, + "tree_index": 422 + }, + { + "classes": [], + "depth": 6, + "end": 411, + "start": 410, + "tree_index": 424 + }, + { + "classes": [], + "depth": 6, + "end": 431, + "start": 421, + "tree_index": 426 + }, + { + "classes": [], + "depth": 6, + "end": 447, + "start": 442, + "tree_index": 428 + }, + { + "classes": [], + "depth": 6, + "end": 483, + "start": 475, + "tree_index": 432 + }, + { + "classes": [], + "depth": 6, + "end": 515, + "start": 507, + "tree_index": 435 + }, + { + "classes": [], + "depth": 6, + "end": 551, + "start": 543, + "tree_index": 439 + }, + { + "classes": [], + "depth": 6, + "end": 602, + "start": 593, + "tree_index": 441 + }, + { + "classes": [], + "depth": 6, + "end": 644, + "start": 640, + "tree_index": 443 + }, + { + "classes": [], + "depth": 6, + "end": 656, + "start": 645, + "tree_index": 444 + }, + { + "classes": [], + "depth": 6, + "end": 738, + "start": 734, + "tree_index": 447 + }, + { + "classes": [], + "depth": 6, + "end": 750, + "start": 739, + "tree_index": 448 + }, + { + "classes": [], + "depth": 6, + "end": 786, + "start": 782, + "tree_index": 449 + }, + { + "classes": [], + "depth": 6, + "end": 1298, + "start": 1293, + "tree_index": 473 + }, + { + "classes": [], + "depth": 7, + "end": 156, + "start": 148, + "tree_index": 477 + }, + { + "classes": [], + "depth": 7, + "end": 165, + "start": 164, + "tree_index": 479 + }, + { + "classes": [], + "depth": 7, + "end": 169, + "start": 168, + "tree_index": 481 + }, + { + "classes": [], + "depth": 7, + "end": 261, + "start": 250, + "tree_index": 485 + }, + { + "classes": [], + "depth": 7, + "end": 426, + "start": 421, + "tree_index": 491 + }, + { + "classes": [], + "depth": 7, + "end": 480, + "start": 475, + "tree_index": 495 + }, + { + "classes": [], + "depth": 7, + "end": 512, + "start": 507, + "tree_index": 498 + }, + { + "classes": [], + "depth": 7, + "end": 548, + "start": 543, + "tree_index": 501 + }, + { + "classes": [], + "depth": 7, + "end": 650, + "start": 645, + "tree_index": 505 + }, + { + "classes": [], + "depth": 7, + "end": 744, + "start": 739, + "tree_index": 510 + }, + { + "classes": [], + "depth": 7, + "end": 1294, + "start": 1293, + "tree_index": 523 + }, + { + "classes": [], + "depth": 8, + "end": 152, + "start": 148, + "tree_index": 526 + }, + { + "classes": [], + "depth": 8, + "end": 260, + "start": 255, + "tree_index": 533 + }, + { + "classes": [], + "depth": 9, + "end": 256, + "start": 255, + "tree_index": 546 + } + ] + }, + "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n sum (n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", + "lineno": 63, + "name": "main" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "3" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "3", + "int", + {} + ], + "177": [ + "3", + "int", + {} + ], + "179": [ + "2", + "int", + { + "inner_calls": [ + "test_id_3" + ] + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "298": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "299": [ + "2", + "int", + {} + ], + "395": [ + "3", + "int", + {} + ], + "78": [ + "False", + "bool", + {} + ], + "80": [ + "6", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "6", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "2" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "2", + "int", + {} + ], + "177": [ + "2", + "int", + {} + ], + "179": [ + "1", + "int", + { + "inner_calls": [ + "test_id_4" + ] + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "298": [ + "", + "function", + {}, + [ + "__wrapped__", + [ + "", + "function", + {} + ] + ] + ], + "299": [ + "1", + "int", + {} + ], + "395": [ + "2", + "int", + {} + ], + "78": [ + "False", + "bool", + {} + ], + "80": [ + "2", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "2", + "traceback": null + }, + { + "arguments": [ + [ + "n", + "1" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "173": [ + "1", + "int", + {} + ], + "19": [ + "", + -2, + {} + ], + "78": [ + "True", + "bool", + {} + ], + "79": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "NoneType", + "bool", + "complex", + "dict", + "float", + "frozenset", + "function", + "int", + "list", + "set", + "str", + "tuple" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 49, + "start": 18, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 81, + "start": 54, + "tree_index": 20 + }, + { + "classes": [], + "depth": 3, + "end": 31, + "start": 25, + "tree_index": 78 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 41, + "tree_index": 79 + }, + { + "classes": [], + "depth": 3, + "end": 81, + "start": 61, + "tree_index": 80 + }, + { + "classes": [], + "depth": 4, + "end": 26, + "start": 25, + "tree_index": 173 + }, + { + "classes": [], + "depth": 4, + "end": 62, + "start": 61, + "tree_index": 177 + }, + { + "classes": [], + "depth": 4, + "end": 81, + "start": 65, + "tree_index": 179 + }, + { + "classes": [], + "depth": 5, + "end": 74, + "start": 65, + "tree_index": 298 + }, + { + "classes": [], + "depth": 5, + "end": 80, + "start": 75, + "tree_index": 299 + }, + { + "classes": [], + "depth": 6, + "end": 76, + "start": 75, + "tree_index": 395 + } + ] + }, + "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", + "lineno": 8, + "name": "factorial" + }, + "return_value": "1", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "other", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "114": [ + "", + -2, + {} + ], + "204": [ + "", + "MyClass", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 46, + "start": 34, + "tree_index": 114 + }, + { + "classes": [], + "depth": 4, + "end": 46, + "start": 41, + "tree_index": 204 + } + ] + }, + "html_body": " @eye\n def __add__(self, other):\n return other", + "lineno": 50, + "name": "MyClass.__add__" + }, + "return_value": "", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "117": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 33, + "start": 29, + "tree_index": 117 + } + ] + }, + "html_body": " @eye\n def __enter__(self):\n pass", + "lineno": 54, + "name": "MyClass.__enter__" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "exc_type", + "None" + ], + [ + "exc_val", + "None" + ], + [ + "exc_tb", + "None" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "120": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 59, + "start": 55, + "tree_index": 120 + } + ] + }, + "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", + "lineno": 58, + "name": "MyClass.__exit__" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "self", + "" + ], + [ + "other", + "" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "114": [ + "", + -2, + {} + ], + "204": [ + "", + "SlotClass", + {}, + [ + "slot1", + [ + "3", + "int", + {} + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 46, + "start": 34, + "tree_index": 114 + }, + { + "classes": [], + "depth": 4, + "end": 46, + "start": 41, + "tree_index": 204 + } + ] + }, + "html_body": " @eye\n def __add__(self, other):\n return other", + "lineno": 50, + "name": "MyClass.__add__" + }, + "return_value": "", + "traceback": null + }, + { + "arguments": [ + [ + "pos1", + "[0, 1, 2, ..., 997, 998, 999]" + ], + [ + "pos2", + "'hello'" + ], + [ + "key1", + "3" + ], + [ + "key2", + "8" + ], + [ + "args", + "()" + ], + [ + "kwargs", + "{'kwarg1': {'key': 'value'}}" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "186": [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "3", + [ + "3", + "int", + {} + ] + ], + [ + "4", + [ + "4", + "int", + {} + ] + ], + [ + "995", + [ + "995", + "int", + {} + ] + ], + [ + "996", + [ + "996", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ], + "187": [ + "'hello'", + "str", + { + "len": 5 + } + ], + "188": [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ], + "28": [ + "", + -2, + {} + ], + "96": [ + "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[0, 1, 2, ..., 997, 998, 999]", + "list", + { + "len": 1000 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "1", + "int", + {} + ] + ], + [ + "2", + [ + "2", + "int", + {} + ] + ], + [ + "997", + [ + "997", + "int", + {} + ] + ], + [ + "998", + [ + "998", + "int", + {} + ] + ], + [ + "999", + [ + "999", + "int", + {} + ] + ] + ] + ], + [ + "1", + [ + "'hello'", + "str", + { + "len": 5 + } + ] + ], + [ + "2", + [ + "{'kwarg1': {'key': 'value'}}", + "dict", + { + "len": 1 + }, + [ + "'kwarg1'", + [ + "{'key': 'value'}", + "dict", + { + "len": 1 + }, + [ + "'key'", + [ + "'value'", + "str", + { + "len": 5 + } + ] + ] + ] + ] + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 94, + "start": 67, + "tree_index": 28 + }, + { + "classes": [], + "depth": 3, + "end": 94, + "start": 74, + "tree_index": 96 + }, + { + "classes": [], + "depth": 4, + "end": 79, + "start": 75, + "tree_index": 186 + }, + { + "classes": [], + "depth": 4, + "end": 85, + "start": 81, + "tree_index": 187 + }, + { + "classes": [], + "depth": 4, + "end": 93, + "start": 87, + "tree_index": 188 + } + ] + }, + "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", + "lineno": 26, + "name": "complex_args" + }, + "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", + "traceback": null + }, + { + "arguments": [ + [ + "pos1", + "1" + ], + [ + "pos2", + "2" + ], + [ + "key1", + "3" + ], + [ + "key2", + "4" + ], + [ + "args", + "()" + ], + [ + "kwargs", + "{'k': 23}" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "186": [ + "1", + "int", + {} + ], + "187": [ + "2", + "int", + {} + ], + "188": [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ], + "28": [ + "", + -2, + {} + ], + "96": [ + "[1, 2, {'k': 23}]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "1", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ], + [ + "2", + [ + "{'k': 23}", + "dict", + { + "len": 1 + }, + [ + "'k'", + [ + "23", + "int", + {} + ] + ] + ] + ] + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "list", + "member_descriptor", + "range", + "set", + "str", + "tuple", + "type" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 94, + "start": 67, + "tree_index": 28 + }, + { + "classes": [], + "depth": 3, + "end": 94, + "start": 74, + "tree_index": 96 + }, + { + "classes": [], + "depth": 4, + "end": 79, + "start": 75, + "tree_index": 186 + }, + { + "classes": [], + "depth": 4, + "end": 85, + "start": 81, + "tree_index": 187 + }, + { + "classes": [], + "depth": 4, + "end": 93, + "start": 87, + "tree_index": 188 + } + ] + }, + "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", + "lineno": 26, + "name": "complex_args" + }, + "return_value": "[1, 2, {'k': 23}]", + "traceback": null + }, + { + "arguments": [ + [ + "g", + "" + ] + ], + "data": { + "loop_iterations": { + "34": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "104": [ + "", + "islice", + {} + ], + "105": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "195": [ + "", + "type", + {}, + [ + "__doc__", + [ + "'islice(iterab...s an iterator.'", + "str", + { + "len": 453 + } + ] + ], + [ + "__getattribute__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__iter__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__module__", + [ + "'itertools'", + "str", + { + "len": 9 + } + ] + ], + [ + "__new__", + [ + "", + "builtin_function_or_method", + {} + ] + ], + [ + "__next__", + [ + "", + "wrapper_descriptor", + {} + ] + ], + [ + "__reduce__", + [ + "", + "method_descriptor", + {} + ] + ], + [ + "__setstate__", + [ + "", + "method_descriptor", + {} + ] + ] + ], + "196": [ + "", + "generator", + {} + ], + "198": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ] + }, + "309": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ] + }, + "310": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "34": [ + "", + -2, + { + "inner_calls": [ + "test_id_12" + ] + } + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 27, + "start": 26, + "tree_index": 34 + } + ], + "node_loops": { + "105": [ + 34 + ], + "198": [ + 34 + ], + "309": [ + 34 + ], + "310": [ + 34 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 61, + "start": 18, + "tree_index": 34 + }, + { + "classes": [], + "depth": 3, + "end": 43, + "start": 31, + "tree_index": 104 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 61, + "start": 53, + "tree_index": 105 + }, + { + "classes": [], + "depth": 4, + "end": 37, + "start": 31, + "tree_index": 195 + }, + { + "classes": [], + "depth": 4, + "end": 39, + "start": 38, + "tree_index": 196 + }, + { + "classes": [], + "depth": 4, + "end": 61, + "start": 53, + "tree_index": 198 + }, + { + "classes": [], + "depth": 5, + "end": 58, + "start": 53, + "tree_index": 309 + }, + { + "classes": [], + "depth": 5, + "end": 60, + "start": 59, + "tree_index": 310 + } + ] + }, + "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", + "lineno": 37, + "name": "use_gen_1" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [], + "data": { + "loop_iterations": { + "31": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + }, + { + "index": 3, + "loops": {} + }, + { + "index": 4, + "loops": {} + }, + { + "index": 5, + "loops": {} + } + ] + }, + "node_values": { + "100": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ], + "5": [ + "", + -2, + {} + ] + }, + "193": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ], + "3": [ + "None", + "NoneType", + {} + ], + "4": [ + "None", + "NoneType", + {} + ], + "5": [ + "None", + "NoneType", + {} + ] + }, + "306": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ], + "3": [ + "3", + "int", + {} + ], + "4": [ + "4", + "int", + {} + ], + "5": [ + "5", + "int", + {} + ] + }, + "31": [ + "", + -2, + {} + ], + "99": [ + "range(0, 6)", + "range", + { + "len": 6 + } + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 20, + "start": 19, + "tree_index": 31 + } + ], + "node_loops": { + "100": [ + 31 + ], + "193": [ + 31 + ], + "306": [ + 31 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 49, + "start": 11, + "tree_index": 31 + }, + { + "classes": [], + "depth": 3, + "end": 32, + "start": 24, + "tree_index": 99 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 49, + "start": 42, + "tree_index": 100 + }, + { + "classes": [], + "depth": 4, + "end": 29, + "start": 24, + "tree_index": 191 + }, + { + "classes": [], + "depth": 4, + "end": 49, + "start": 42, + "tree_index": 193 + }, + { + "classes": [], + "depth": 5, + "end": 49, + "start": 48, + "tree_index": 306 + } + ] + }, + "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", + "lineno": 31, + "name": "gen" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "g", + "" + ] + ], + "data": { + "loop_iterations": { + "37": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "109": [ + "", + "generator", + {} + ], + "110": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "201": { + "0": [ + "None", + "NoneType", + {} + ], + "1": [ + "None", + "NoneType", + {} + ], + "2": [ + "None", + "NoneType", + {} + ] + }, + "311": { + "0": [ + "", + "function", + {} + ], + "1": [ + "", + "function", + {} + ], + "2": [ + "", + "function", + {} + ] + }, + "312": { + "0": [ + "3", + "int", + {} + ], + "1": [ + "4", + "int", + {} + ], + "2": [ + "5", + "int", + {} + ] + }, + "37": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 27, + "start": 26, + "tree_index": 37 + } + ], + "node_loops": { + "110": [ + 37 + ], + "201": [ + 37 + ], + "311": [ + 37 + ], + "312": [ + 37 + ] + }, + "node_ranges": [ + { + "classes": [ + "loop", + "stmt" + ], + "depth": 2, + "end": 50, + "start": 18, + "tree_index": 37 + }, + { + "classes": [], + "depth": 3, + "end": 32, + "start": 31, + "tree_index": 109 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 50, + "start": 42, + "tree_index": 110 + }, + { + "classes": [], + "depth": 4, + "end": 50, + "start": 42, + "tree_index": 201 + }, + { + "classes": [], + "depth": 5, + "end": 47, + "start": 42, + "tree_index": 311 + }, + { + "classes": [], + "depth": 5, + "end": 49, + "start": 48, + "tree_index": 312 + } + ] + }, + "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", + "lineno": 43, + "name": "use_gen_2" + }, + "return_value": "None", + "traceback": null + } +] \ No newline at end of file diff --git a/tests/golden-files/3.12/traced.json b/tests/golden-files/3.12/traced.json new file mode 100644 index 0000000..0f13cd5 --- /dev/null +++ b/tests/golden-files/3.12/traced.json @@ -0,0 +1,1785 @@ +[ + { + "arguments": [], + "data": { + "loop_iterations": {}, + "node_values": { + "1": [ + "", + -2, + {} + ], + "13": [ + "None", + "NoneType", + { + "inner_calls": [ + "test_id_15" + ] + } + ], + "2": [ + "", + -2, + {} + ], + "27": [ + "", + "function", + {} + ], + "3": [ + "", + -2, + {} + ], + "4": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "node_loops": { + "103": [ + 104 + ], + "105": [ + 82 + ], + "117": [ + 100, + 118 + ], + "118": [ + 100 + ], + "121": [ + 104 + ], + "123": [ + 104 + ], + "127": [ + 82 + ], + "136": [ + 100, + 118 + ], + "140": [ + 100 + ], + "150": [ + 82 + ], + "152": [ + 82 + ], + "157": [ + 100 + ], + "158": [ + 100 + ], + "34": [ + 19 + ], + "53": [ + 19 + ], + "72": [ + 19 + ], + "73": [ + 19 + ], + "81": [ + 82 + ], + "95": [ + 19 + ], + "97": [ + 19 + ], + "99": [ + 100 + ] + } + }, + "html_body": "import birdseye.trace_module_deep\n\n\ndef deco(f):\n return f\n\n\ndef m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()\n\n\nm()", + "lineno": 1, + "name": "$$__FILE__$$" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [], + "data": { + "loop_iterations": { + "100": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": { + "118": [ + { + "index": 0, + "loops": {} + } + ] + } + }, + { + "index": 2, + "loops": { + "118": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + } + ] + } + } + ], + "19": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ], + "82": [ + { + "index": 0, + "loops": {} + }, + { + "index": 1, + "loops": {} + }, + { + "index": 2, + "loops": {} + } + ] + }, + "node_values": { + "10": [ + "", + -2, + {} + ], + "100": [ + "", + -2, + {} + ], + "105": { + "0": [ + ".A. at 0xABC>", + "function", + {} + ], + "1": [ + ".A. at 0xABC>", + "function", + {} + ], + "2": [ + ".A. at 0xABC>", + "function", + {} + ] + }, + "108": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "11": [ + "", + -2, + {} + ], + "113": [ + ".A object at 0xABC>", + "m..A", + {} + ], + "117": { + "1": { + "0": [ + "0", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "2", + "int", + {} + ] + } + }, + "118": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "12": [ + "", + -2, + {} + ], + "120": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "135": [ + ".A'>", + "type", + {}, + [ + "B", + [ + ".A.B'>", + "type", + {}, + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.traced'", + "str", + { + "len": 19 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ] + ] + ], + [ + "__dict__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "__doc__", + [ + "None", + "NoneType", + {} + ] + ], + [ + "__module__", + [ + "'test_scripts.traced'", + "str", + { + "len": 19 + } + ] + ], + [ + "__weakref__", + [ + "", + "getset_descriptor", + {} + ] + ], + [ + "bar", + [ + ".A.bar at 0xABC>", + "function", + {} + ] + ], + [ + "foo", + [ + ".A.foo at 0xABC>", + "function", + {} + ] + ], + [ + "i", + [ + "2", + "int", + {} + ] + ] + ], + "136": { + "1": { + "0": [ + "0", + "int", + {} + ] + }, + "2": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ] + } + }, + "140": { + "0": [ + "range(0, 0)", + "range", + { + "len": 0 + } + ], + "1": [ + "range(0, 1)", + "range", + { + "len": 1 + } + ], + "2": [ + "range(0, 2)", + "range", + { + "len": 2 + } + ] + }, + "158": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "18": [ + "'9'", + "str", + { + "len": 1 + } + ], + "19": [ + "", + -2, + {} + ], + "20": [ + "", + -2, + {} + ], + "21": [ + "", + -2, + {} + ], + "22": [ + "", + -2, + {} + ], + "23": [ + "", + -2, + {} + ], + "24": [ + "", + -2, + { + "inner_calls": [ + "test_id_16" + ] + } + ], + "25": [ + "", + -2, + {} + ], + "26": [ + "4", + "int", + { + "inner_calls": [ + "test_id_17" + ] + } + ], + "31": [ + "9", + "int", + {} + ], + "33": [ + "range(0, 3)", + "range", + { + "len": 3 + } + ], + "34": { + "0": [ + "", + -2, + {} + ], + "1": [ + "", + -2, + {} + ], + "2": [ + "", + -2, + {} + ] + }, + "35": [ + "", + -2, + {} + ], + "36": [ + "9", + "int", + {} + ], + "37": [ + "[0, 8, 16]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "8", + "int", + {} + ] + ], + [ + "2", + [ + "16", + "int", + {} + ] + ] + ], + "38": [ + "'{8, 9, 7}'", + "str", + { + "len": 9 + } + ], + "43": [ + "", + "function", + {} + ], + "46": [ + ".A.bar of .A object at 0xABC>>", + "method", + {} + ], + "53": { + "0": [ + "'0'", + "str", + { + "len": 1 + } + ], + "1": [ + "'1'", + "str", + { + "len": 1 + } + ], + "2": [ + "'4'", + "str", + { + "len": 1 + } + ] + }, + "54": [ + "'[[], [0], [0, 2]]'", + "str", + { + "len": 17 + } + ], + "55": [ + ".A. at 0xABC>", + "function", + {} + ], + "57": [ + ".A. at 0xABC>", + "function", + {} + ], + "60": [ + "{8, 9, 7}", + "set", + { + "len": 3 + }, + [ + "<0>", + [ + "8", + "int", + {} + ] + ], + [ + "<1>", + [ + "9", + "int", + {} + ] + ], + [ + "<2>", + [ + "7", + "int", + {} + ] + ] + ], + "69": [ + ".A object at 0xABC>", + "m..A", + {} + ], + "73": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "4", + "int", + {} + ] + }, + "75": [ + "[[], [0], [0, 2]]", + "list", + { + "len": 3 + }, + [ + "0", + [ + "[]", + "list", + { + "len": 0 + } + ] + ], + [ + "1", + [ + "[0]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ] + ], + [ + "2", + [ + "[0, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + ] + ], + "81": { + "0": [ + "7", + "int", + {} + ], + "1": [ + "8", + "int", + {} + ], + "2": [ + "9", + "int", + {} + ] + }, + "82": [ + "", + -2, + {} + ], + "9": [ + "", + -2, + {} + ], + "93": [ + ".A.foo of .A object at 0xABC>>", + "method", + {} + ], + "95": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "97": { + "0": [ + "0", + "int", + {} + ], + "1": [ + "1", + "int", + {} + ], + "2": [ + "2", + "int", + {} + ] + }, + "99": { + "0": [ + "[]", + "list", + { + "len": 0 + } + ], + "1": [ + "[0]", + "list", + { + "len": 1 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ] + ], + "2": [ + "[0, 2]", + "list", + { + "len": 2 + }, + [ + "0", + [ + "0", + "int", + {} + ] + ], + [ + "1", + [ + "2", + "int", + {} + ] + ] + ] + } + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [ + { + "end": 61, + "start": 60, + "tree_index": 19 + }, + { + "end": 314, + "start": 313, + "tree_index": 82 + }, + { + "end": 181, + "start": 180, + "tree_index": 100 + }, + { + "end": 257, + "start": 256, + "tree_index": 104 + }, + { + "end": 145, + "start": 144, + "tree_index": 118 + } + ], + "node_loops": { + "103": [ + 104 + ], + "105": [ + 82 + ], + "117": [ + 100, + 118 + ], + "118": [ + 100 + ], + "121": [ + 104 + ], + "123": [ + 104 + ], + "127": [ + 82 + ], + "136": [ + 100, + 118 + ], + "140": [ + 100 + ], + "150": [ + 82 + ], + "152": [ + 82 + ], + "157": [ + 100 + ], + "158": [ + 100 + ], + "34": [ + 19 + ], + "53": [ + 19 + ], + "72": [ + 19 + ], + "73": [ + 19 + ], + "81": [ + 82 + ], + "95": [ + 19 + ], + "97": [ + 19 + ], + "99": [ + 100 + ] + }, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 1, + "end": 509, + "start": 0, + "tree_index": 3 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 20, + "start": 13, + "tree_index": 9 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 33, + "start": 25, + "tree_index": 10 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 488, + "start": 35, + "tree_index": 11 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 509, + "start": 494, + "tree_index": 12 + }, + { + "classes": [], + "depth": 3, + "end": 33, + "start": 25, + "tree_index": 18 + }, + { + "classes": [ + "loop", + "stmt" + ], + "depth": 3, + "end": 97, + "start": 48, + "tree_index": 19 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 195, + "start": 99, + "tree_index": 20 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 225, + "start": 205, + "tree_index": 21 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 274, + "start": 234, + "tree_index": 22 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 328, + "start": 283, + "tree_index": 23 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 439, + "start": 330, + "tree_index": 24 + }, + { + "classes": [ + "stmt" + ], + "depth": 3, + "end": 488, + "start": 441, + "tree_index": 25 + }, + { + "classes": [], + "depth": 3, + "end": 509, + "start": 494, + "tree_index": 26 + }, + { + "classes": [], + "depth": 4, + "end": 28, + "start": 25, + "tree_index": 30 + }, + { + "classes": [], + "depth": 4, + "end": 32, + "start": 29, + "tree_index": 31 + }, + { + "classes": [], + "depth": 4, + "end": 73, + "start": 65, + "tree_index": 33 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 97, + "start": 87, + "tree_index": 34 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 195, + "start": 128, + "tree_index": 35 + }, + { + "classes": [], + "depth": 4, + "end": 225, + "start": 205, + "tree_index": 36 + }, + { + "classes": [], + "depth": 4, + "end": 274, + "start": 234, + "tree_index": 37 + }, + { + "classes": [], + "depth": 4, + "end": 328, + "start": 283, + "tree_index": 38 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 388, + "start": 379, + "tree_index": 40 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 415, + "start": 401, + "tree_index": 41 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 439, + "start": 428, + "tree_index": 42 + }, + { + "classes": [], + "depth": 4, + "end": 343, + "start": 339, + "tree_index": 43 + }, + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 488, + "start": 476, + "tree_index": 45 + }, + { + "classes": [], + "depth": 4, + "end": 507, + "start": 494, + "tree_index": 46 + }, + { + "classes": [], + "depth": 5, + "end": 70, + "start": 65, + "tree_index": 51 + }, + { + "classes": [], + "depth": 5, + "end": 97, + "start": 87, + "tree_index": 53 + }, + { + "classes": [], + "depth": 5, + "end": 195, + "start": 128, + "tree_index": 54 + }, + { + "classes": [], + "depth": 5, + "end": 218, + "start": 206, + "tree_index": 55 + }, + { + "classes": [], + "depth": 5, + "end": 270, + "start": 235, + "tree_index": 57 + }, + { + "classes": [], + "depth": 5, + "end": 286, + "start": 283, + "tree_index": 59 + }, + { + "classes": [], + "depth": 5, + "end": 327, + "start": 287, + "tree_index": 60 + }, + { + "classes": [], + "depth": 5, + "end": 388, + "start": 383, + "tree_index": 63 + }, + { + "classes": [], + "depth": 5, + "end": 415, + "start": 401, + "tree_index": 64 + }, + { + "classes": [], + "depth": 5, + "end": 439, + "start": 435, + "tree_index": 65 + }, + { + "classes": [], + "depth": 5, + "end": 488, + "start": 483, + "tree_index": 68 + }, + { + "classes": [], + "depth": 5, + "end": 503, + "start": 494, + "tree_index": 69 + }, + { + "classes": [], + "depth": 6, + "end": 90, + "start": 87, + "tree_index": 72 + }, + { + "classes": [], + "depth": 6, + "end": 96, + "start": 91, + "tree_index": 73 + }, + { + "classes": [], + "depth": 6, + "end": 131, + "start": 128, + "tree_index": 74 + }, + { + "classes": [], + "depth": 6, + "end": 194, + "start": 132, + "tree_index": 75 + }, + { + "classes": [], + "depth": 6, + "end": 270, + "start": 245, + "tree_index": 79 + }, + { + "classes": [], + "depth": 6, + "end": 308, + "start": 288, + "tree_index": 81 + }, + { + "classes": [ + "loop" + ], + "depth": 6, + "end": 326, + "start": 309, + "tree_index": 82 + }, + { + "classes": [], + "depth": 6, + "end": 404, + "start": 401, + "tree_index": 87 + }, + { + "classes": [], + "depth": 6, + "end": 414, + "start": 405, + "tree_index": 88 + }, + { + "classes": [], + "depth": 6, + "end": 501, + "start": 494, + "tree_index": 93 + }, + { + "classes": [], + "depth": 7, + "end": 92, + "start": 91, + "tree_index": 95 + }, + { + "classes": [], + "depth": 7, + "end": 96, + "start": 95, + "tree_index": 97 + }, + { + "classes": [], + "depth": 7, + "end": 158, + "start": 133, + "tree_index": 99 + }, + { + "classes": [ + "loop" + ], + "depth": 7, + "end": 193, + "start": 176, + "tree_index": 100 + }, + { + "classes": [], + "depth": 7, + "end": 251, + "start": 246, + "tree_index": 103 + }, + { + "classes": [ + "loop" + ], + "depth": 7, + "end": 269, + "start": 252, + "tree_index": 104 + }, + { + "classes": [], + "depth": 7, + "end": 304, + "start": 289, + "tree_index": 105 + }, + { + "classes": [], + "depth": 7, + "end": 326, + "start": 318, + "tree_index": 108 + }, + { + "classes": [], + "depth": 7, + "end": 410, + "start": 405, + "tree_index": 110 + }, + { + "classes": [], + "depth": 7, + "end": 414, + "start": 413, + "tree_index": 112 + }, + { + "classes": [], + "depth": 7, + "end": 497, + "start": 494, + "tree_index": 113 + }, + { + "classes": [], + "depth": 8, + "end": 139, + "start": 134, + "tree_index": 117 + }, + { + "classes": [ + "loop" + ], + "depth": 8, + "end": 157, + "start": 140, + "tree_index": 118 + }, + { + "classes": [], + "depth": 8, + "end": 193, + "start": 185, + "tree_index": 120 + }, + { + "classes": [], + "depth": 8, + "end": 247, + "start": 246, + "tree_index": 121 + }, + { + "classes": [], + "depth": 8, + "end": 251, + "start": 250, + "tree_index": 123 + }, + { + "classes": [], + "depth": 8, + "end": 269, + "start": 261, + "tree_index": 125 + }, + { + "classes": [], + "depth": 8, + "end": 304, + "start": 299, + "tree_index": 127 + }, + { + "classes": [], + "depth": 8, + "end": 323, + "start": 318, + "tree_index": 129 + }, + { + "classes": [], + "depth": 8, + "end": 495, + "start": 494, + "tree_index": 135 + }, + { + "classes": [], + "depth": 9, + "end": 135, + "start": 134, + "tree_index": 136 + }, + { + "classes": [], + "depth": 9, + "end": 157, + "start": 149, + "tree_index": 140 + }, + { + "classes": [], + "depth": 9, + "end": 190, + "start": 185, + "tree_index": 142 + }, + { + "classes": [], + "depth": 9, + "end": 266, + "start": 261, + "tree_index": 147 + }, + { + "classes": [], + "depth": 9, + "end": 300, + "start": 299, + "tree_index": 150 + }, + { + "classes": [], + "depth": 9, + "end": 304, + "start": 303, + "tree_index": 152 + }, + { + "classes": [], + "depth": 10, + "end": 154, + "start": 149, + "tree_index": 157 + }, + { + "classes": [], + "depth": 10, + "end": 156, + "start": 155, + "tree_index": 158 + } + ] + }, + "html_body": "def m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()", + "lineno": 8, + "name": "m" + }, + "return_value": "None", + "traceback": null + }, + { + "arguments": [ + [ + "f", + ".A.foo at 0xABC>" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "15": [ + ".A.foo at 0xABC>", + "function", + {} + ], + "7": [ + "", + -2, + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "member_descriptor", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 1, + "end": 25, + "start": 0, + "tree_index": 2 + }, + { + "classes": [ + "stmt" + ], + "depth": 2, + "end": 25, + "start": 17, + "tree_index": 7 + }, + { + "classes": [], + "depth": 3, + "end": 25, + "start": 24, + "tree_index": 15 + } + ] + }, + "html_body": "def deco(f):\n return f", + "lineno": 4, + "name": "deco" + }, + "return_value": ".A.foo at 0xABC>", + "traceback": null + }, + { + "arguments": [ + [ + "self", + ".A object at 0xABC>" + ] + ], + "data": { + "loop_iterations": {}, + "node_values": { + "45": [ + "", + -2, + {} + ], + "68": [ + "4", + "int", + {} + ] + }, + "num_special_types": 11, + "type_names": [ + "MyClass", + "NoneType", + "SlotClass", + "ValueError", + "bool", + "builtin_function_or_method", + "complex", + "dict", + "float", + "frozenset", + "function", + "generator", + "getset_descriptor", + "int", + "islice", + "list", + "m..A", + "member_descriptor", + "method", + "method_descriptor", + "range", + "set", + "str", + "tuple", + "type", + "wrapper_descriptor" + ] + }, + "exception": null, + "function": { + "data": { + "loop_ranges": [], + "node_loops": {}, + "node_ranges": [ + { + "classes": [ + "stmt" + ], + "depth": 4, + "end": 39, + "start": 27, + "tree_index": 45 + }, + { + "classes": [], + "depth": 5, + "end": 39, + "start": 34, + "tree_index": 68 + } + ] + }, + "html_body": " def bar(self):\n return 1 + 3", + "lineno": 30, + "name": "bar" + }, + "return_value": "4", + "traceback": null + } +] \ No newline at end of file From 4d68971141146bf076af84d7854ee2d035c4c225 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 21:37:44 +0200 Subject: [PATCH 07/15] remove pypy test files --- tests/golden-files/pypy2.7/gold.json | 14901 ----------------------- tests/golden-files/pypy2.7/traced.json | 1 - tests/golden-files/pypy3.5/gold.json | 13814 --------------------- tests/golden-files/pypy3.5/traced.json | 1959 --- 4 files changed, 30675 deletions(-) delete mode 100644 tests/golden-files/pypy2.7/gold.json delete mode 100644 tests/golden-files/pypy2.7/traced.json delete mode 100644 tests/golden-files/pypy3.5/gold.json delete mode 100644 tests/golden-files/pypy3.5/traced.json diff --git a/tests/golden-files/pypy2.7/gold.json b/tests/golden-files/pypy2.7/gold.json deleted file mode 100644 index de62a22..0000000 --- a/tests/golden-files/pypy2.7/gold.json +++ /dev/null @@ -1,14901 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": { - "241": [ - { - "index": 0, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 1, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - } - ], - "351": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "355": [ - { - "index": 0, - "loops": {} - } - ], - "46": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 191, - "loops": {} - }, - { - "index": 192, - "loops": {} - }, - { - "index": 193, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 193, - "loops": {} - }, - { - "index": 194, - "loops": {} - }, - { - "index": 195, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "125": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 195, - "loops": {} - }, - { - "index": 196, - "loops": {} - }, - { - "index": 197, - "loops": {} - } - ] - } - } - ], - "47": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "66": [ - { - "index": 0, - "loops": {} - } - ] - }, - "node_values": { - "119": [ - "True", - "bool", - {} - ], - "123": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "124": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "125": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "127": [ - "[0, 1, 2, 3, 4, 5]", - "list", - { - "len": 6 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "5", - [ - "5", - "int", - {} - ] - ] - ], - "128": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "129": { - "1": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "131": [ - "", - "MyClass", - { - "inner_calls": [ - "test_id_5" - ] - } - ], - "133": [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "3", - [ - "[3, 4, 5, ..., 100, 101, 102]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "3", - "int", - {} - ] - ], - [ - "1", - [ - "4", - "int", - {} - ] - ], - [ - "2", - [ - "5", - "int", - {} - ] - ], - [ - "97", - [ - "100", - "int", - {} - ] - ], - [ - "98", - [ - "101", - "int", - {} - ] - ], - [ - "99", - [ - "102", - "int", - {} - ] - ] - ] - ], - [ - "4", - [ - "[4, 5, 6, ..., 101, 102, 103]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "4", - "int", - {} - ] - ], - [ - "1", - [ - "5", - "int", - {} - ] - ], - [ - "2", - [ - "6", - "int", - {} - ] - ], - [ - "97", - [ - "101", - "int", - {} - ] - ], - [ - "98", - [ - "102", - "int", - {} - ] - ], - [ - "99", - [ - "103", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 192, 193, 194]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "97", - [ - "192", - "int", - {} - ] - ], - [ - "98", - [ - "193", - "int", - {} - ] - ], - [ - "99", - [ - "194", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 193, 194, 195]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "97", - [ - "193", - "int", - {} - ] - ], - [ - "98", - [ - "194", - "int", - {} - ] - ], - [ - "99", - [ - "195", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ], - "134": [ - "None", - "NoneType", - {} - ], - "135": [ - "None", - "NoneType", - {} - ], - "136": [ - "None", - "NoneType", - {} - ], - "137": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "138": [ - "", - -2, - {} - ], - "139": [ - "None", - "NoneType", - {} - ], - "140": [ - "True", - "bool", - {} - ], - "141": [ - "True", - "bool", - {} - ], - "142": [ - "True", - "bool", - {} - ], - "148": [ - "True", - "bool", - {} - ], - "150": [ - "None", - "NoneType", - {} - ], - "151": [ - "True", - "bool", - {} - ], - "152": [ - "True", - "bool", - {} - ], - "153": [ - "", - -2, - {} - ], - "154": [ - "", - -2, - {} - ], - "156": { - "0": [ - "", - -2, - {} - ] - }, - "157": [ - "True", - "bool", - {} - ], - "160": [ - "True", - "bool", - {} - ], - "162": [ - "", - "generator", - {} - ], - "163": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_11" - ] - } - ], - "164": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_13" - ] - } - ], - "214": [ - "6", - "int", - { - "inner_calls": [ - "test_id_2" - ] - } - ], - "222": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "224": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[0, 1]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ] - ], - "2": [ - "[0, 1, 2, 3]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ] - ], - "3": [ - "[0, 1, 2, ..., 191, 192, 193]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "191", - [ - "191", - "int", - {} - ] - ], - [ - "192", - [ - "192", - "int", - {} - ] - ], - [ - "193", - [ - "193", - "int", - {} - ] - ] - ], - "4": [ - "[0, 1, 2, ..., 193, 194, 195]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "193", - [ - "193", - "int", - {} - ] - ], - [ - "194", - [ - "194", - "int", - {} - ] - ], - [ - "195", - [ - "195", - "int", - {} - ] - ] - ], - "5": [ - "[0, 1, 2, ..., 195, 196, 197]", - "list", - { - "len": 198 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "195", - [ - "195", - "int", - {} - ] - ], - [ - "196", - [ - "196", - "int", - {} - ] - ], - [ - "197", - [ - "197", - "int", - {} - ] - ] - ] - }, - "225": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "226": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "230": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "232": { - "1": [ - "False", - "bool", - {} - ], - "3": [ - "True", - "bool", - {} - ] - }, - "233": { - "3": [ - "", - -2, - {} - ] - }, - "235": [ - "", - "MyClass", - {} - ], - "237": [ - "", - "MyClass", - {} - ], - "238": [ - "", - "MyClass", - {} - ], - "240": { - "0": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "1": [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - }, - "241": [ - "", - -2, - {} - ], - "242": [ - "", - "function", - {} - ], - "243": [ - " at 0xABC>", - "generator", - {} - ], - "244": [ - "", - "function", - {} - ], - "245": [ - "set([0, 1, 2, 3])", - "set", - { - "len": 4 - }, - [ - "<0>", - [ - "0", - "int", - {} - ] - ], - [ - "<1>", - [ - "1", - "int", - {} - ] - ], - [ - "<2>", - [ - "2", - "int", - {} - ] - ], - [ - "<3>", - [ - "3", - "int", - {} - ] - ] - ], - "246": [ - "", - "function", - {} - ], - "247": [ - "{0: 0}", - "dict", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "249": [ - "", - "function", - {} - ], - "250": [ - "", - "SlotClass", - { - "inner_calls": [ - "test_id_8" - ] - }, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "251": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "inner_calls": [ - "test_id_9" - ], - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "253": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "254": [ - "[1, 2, {'k': 23}]", - "list", - { - "inner_calls": [ - "test_id_10" - ], - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ], - "257": [ - "3", - "int", - {} - ], - "262": [ - "6", - "int", - {} - ], - "266": [ - "", - "function", - {} - ], - "270": [ - "2", - "int", - {} - ], - "273": [ - "(1, 2)", - "tuple", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ], - "276": [ - "ValueError", - -1, - {} - ], - "280": [ - "None", - "NoneType", - {} - ], - "282": [ - "8", - "int", - {} - ], - "286": [ - "4", - "int", - {} - ], - "290": [ - "", - "function", - {} - ], - "291": [ - "", - "function", - {} - ], - "292": [ - "", - "generator", - {} - ], - "293": [ - "", - "function", - {} - ], - "294": [ - "", - "generator", - {} - ], - "322": [ - "", - "function", - {} - ], - "325": { - "0": [ - "", - "instancemethod", - {} - ], - "1": [ - "", - "instancemethod", - {} - ], - "2": [ - "", - "instancemethod", - {} - ], - "3": [ - "", - "instancemethod", - {} - ], - "4": [ - "", - "instancemethod", - {} - ], - "5": [ - "", - "instancemethod", - {} - ] - }, - "329": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - }, - "330": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "331": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "333": { - "1": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "335": { - "0": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "336": { - "1": [ - "1", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "339": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {} - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {} - ] - ], - [ - "__exit__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "340": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {} - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {} - ] - ], - [ - "__exit__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "342": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "3", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "100", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "100", - "int", - {} - ], - "5": [ - "101", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "195", - "int", - {} - ], - "5": [ - "196", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "196", - "int", - {} - ], - "4": [ - "197", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - } - }, - "343": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "345": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "350": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "351": [ - "", - -2, - {} - ], - "353": { - "0": [ - "0", - "int", - {} - ] - }, - "354": { - "0": [ - "0", - "int", - {} - ] - }, - "355": [ - "", - -2, - {} - ], - "357": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "359": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "360": [ - "", - "function", - {} - ], - "361": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "365": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "367": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "369": [ - "", - "function", - {} - ], - "377": [ - "'1 + 2'", - "str", - { - "len": 5 - } - ], - "392": [ - "ValueError()", - "ValueError", - {} - ], - "398": [ - "", - -2, - {} - ], - "399": [ - "", - "function", - {} - ], - "400": [ - " at 0xABC>", - "function", - {} - ], - "419": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[[]]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "2": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", - "list", - { - "len": 97 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "94", - [ - "[94, 95, 96, ..., 279, 280, 281]", - "list", - { - "len": 188 - }, - [ - "0", - [ - "94", - "int", - {} - ] - ], - [ - "1", - [ - "95", - "int", - {} - ] - ], - [ - "2", - [ - "96", - "int", - {} - ] - ], - [ - "185", - [ - "279", - "int", - {} - ] - ], - [ - "186", - [ - "280", - "int", - {} - ] - ], - [ - "187", - [ - "281", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ], - [ - "195", - [ - "293", - "int", - {} - ] - ] - ] - ] - ] - }, - "425": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "426": { - "1": { - "0": [ - "", - "instancemethod", - {} - ], - "1": [ - "", - "instancemethod", - {} - ] - }, - "2": { - "0": [ - "", - "instancemethod", - {} - ], - "1": [ - "", - "instancemethod", - {} - ], - "2": [ - "", - "instancemethod", - {} - ], - "3": [ - "", - "instancemethod", - {} - ] - }, - "3": { - "0": [ - "", - "instancemethod", - {} - ], - "1": [ - "", - "instancemethod", - {} - ], - "2": [ - "", - "instancemethod", - {} - ], - "3": [ - "", - "instancemethod", - {} - ], - "4": [ - "", - "instancemethod", - {} - ], - "5": [ - "", - "instancemethod", - {} - ] - }, - "4": { - "0": [ - "", - "instancemethod", - {} - ], - "1": [ - "", - "instancemethod", - {} - ], - "2": [ - "", - "instancemethod", - {} - ], - "3": [ - "", - "instancemethod", - {} - ], - "4": [ - "", - "instancemethod", - {} - ], - "5": [ - "", - "instancemethod", - {} - ] - }, - "5": { - "0": [ - "", - "instancemethod", - {} - ], - "1": [ - "", - "instancemethod", - {} - ], - "2": [ - "", - "instancemethod", - {} - ], - "3": [ - "", - "instancemethod", - {} - ], - "4": [ - "", - "instancemethod", - {} - ], - "5": [ - "", - "instancemethod", - {} - ] - } - }, - "427": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "5", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "288", - "int", - {} - ], - "4": [ - "289", - "int", - {} - ], - "5": [ - "290", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "291", - "int", - {} - ], - "4": [ - "292", - "int", - {} - ], - "5": [ - "293", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "294", - "int", - {} - ], - "4": [ - "295", - "int", - {} - ], - "5": [ - "296", - "int", - {} - ] - } - }, - "428": { - "1": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ] - }, - "2": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "3": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "4": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "5": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - } - }, - "429": { - "1": { - "0": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 294, 295, 296]", - "list", - { - "len": 198 - } - ] - ] - ] - } - }, - "430": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "431": { - "1": [ - "11", - "int", - {} - ], - "3": [ - "11", - "int", - {} - ] - }, - "436": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "438": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "0", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "0", - "int", - {} - ], - "4": [ - "0", - "int", - {} - ], - "5": [ - "0", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "1", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ], - "4": [ - "1", - "int", - {} - ], - "5": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ], - "4": [ - "2", - "int", - {} - ], - "5": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "44": [ - "", - -2, - {} - ], - "440": { - "0": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "1": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "2": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "3": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "4": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "5": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - }, - "446": [ - "[0, 1, 2, 3]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ] - ], - "449": [ - "[0, 1, 2, 3]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ] - ], - "45": [ - "", - -2, - {} - ], - "453": [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "455": [ - "", - "type", - {}, - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__init__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__slots__", - [ - "('slot1',)", - "tuple", - { - "len": 1 - }, - [ - "0", - [ - "'slot1'", - "str", - { - "len": 5 - } - ] - ] - ] - ], - [ - "slot1", - [ - "", - "member_descriptor", - {} - ] - ] - ], - "458": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "46": [ - "", - -2, - {} - ], - "462": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "47": [ - "", - -2, - {} - ], - "48": [ - "", - -2, - {} - ], - "49": [ - "", - -2, - {} - ], - "497": { - "1": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[1]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ] - ] - }, - "2": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[2]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ] - ], - "3": [ - "[2, 3, 4]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ] - ] - }, - "3": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[97]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ] - ], - "2": [ - "[97, 98]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "188", - [ - "285", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ] - ], - "4": [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ] - ], - "5": [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ] - ] - }, - "4": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[98]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ] - ], - "2": [ - "[98, 99]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ] - ], - "3": [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "190", - [ - "288", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ] - ], - "5": [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ] - ] - }, - "5": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[99]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ] - ], - "2": [ - "[99, 100]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ] - ], - "3": [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "192", - [ - "291", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ] - ], - "4": [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ], - [ - "196", - [ - "295", - "int", - {} - ] - ] - ] - } - }, - "499": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "50": [ - "", - -2, - {} - ], - "501": { - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "191", - "int", - {} - ], - "4": [ - "192", - "int", - {} - ], - "5": [ - "193", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "193", - "int", - {} - ], - "4": [ - "194", - "int", - {} - ], - "5": [ - "195", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - } - }, - "505": { - "0": [ - "ZeroDivisionError: integer division by zero", - -1, - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "ZeroDivisionError: integer division by zero", - -1, - {} - ], - "3": [ - "1", - "int", - {} - ] - }, - "51": [ - "", - -2, - {} - ], - "52": [ - "", - -2, - {} - ], - "53": [ - "", - -2, - { - "inner_calls": [ - "test_id_6", - "test_id_7" - ] - } - ], - "54": [ - "", - -2, - {} - ], - "542": { - "1": { - "0": [ - "[[], []]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], []]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ] - } - }, - "549": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ] - }, - "55": [ - "", - -2, - {} - ], - "56": [ - "", - -2, - {} - ], - "562": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "57": [ - "", - -2, - {} - ], - "58": [ - "", - -2, - {} - ], - "59": [ - "", - -2, - {} - ], - "60": [ - "", - -2, - {} - ], - "61": [ - "", - -2, - {} - ], - "62": [ - "", - -2, - {} - ], - "63": [ - "", - -2, - {} - ], - "64": [ - "", - -2, - {} - ], - "65": [ - "", - -2, - {} - ], - "66": [ - "", - -2, - {} - ], - "67": [ - "", - -2, - {} - ], - "68": [ - "", - -2, - {} - ], - "69": [ - "", - -2, - {} - ], - "70": [ - "", - -2, - {} - ], - "71": [ - "", - -2, - {} - ], - "72": [ - "", - -2, - {} - ], - "73": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "instancemethod", - "int", - "islice", - "list", - "long", - "member_descriptor", - "set", - "staticmethod", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 65, - "start": 64, - "tree_index": 46 - }, - { - "end": 205, - "start": 204, - "tree_index": 47 - }, - { - "end": 1254, - "start": 1250, - "tree_index": 66 - }, - { - "end": 118, - "start": 117, - "tree_index": 125 - }, - { - "end": 438, - "start": 437, - "tree_index": 241 - }, - { - "end": 417, - "start": 416, - "tree_index": 343 - }, - { - "end": 503, - "start": 502, - "tree_index": 351 - }, - { - "end": 539, - "start": 538, - "tree_index": 355 - } - ], - "node_loops": { - "124": [ - 46 - ], - "125": [ - 46 - ], - "128": [ - 47 - ], - "129": [ - 47 - ], - "155": [ - 66 - ], - "156": [ - 66 - ], - "222": [ - 46 - ], - "224": [ - 46 - ], - "225": [ - 46, - 125 - ], - "226": [ - 46, - 125 - ], - "230": [ - 47 - ], - "232": [ - 47 - ], - "233": [ - 47 - ], - "240": [ - 241 - ], - "325": [ - 46 - ], - "328": [ - 46 - ], - "329": [ - 46 - ], - "330": [ - 46, - 125 - ], - "331": [ - 46, - 125 - ], - "333": [ - 47 - ], - "334": [ - 47 - ], - "335": [ - 47 - ], - "336": [ - 47 - ], - "342": [ - 241, - 343 - ], - "343": [ - 241 - ], - "347": [ - 348 - ], - "350": [ - 351 - ], - "353": [ - 355 - ], - "354": [ - 355 - ], - "419": [ - 46 - ], - "425": [ - 46 - ], - "426": [ - 46, - 125 - ], - "427": [ - 46, - 125 - ], - "428": [ - 46, - 125 - ], - "429": [ - 46, - 125 - ], - "430": [ - 47 - ], - "431": [ - 47 - ], - "436": [ - 241, - 343 - ], - "438": [ - 241, - 343 - ], - "440": [ - 241 - ], - "497": [ - 46, - 125 - ], - "499": [ - 46, - 125 - ], - "501": [ - 46, - 125 - ], - "505": [ - 47 - ], - "511": [ - 241 - ], - "542": [ - 46, - 125 - ], - "549": [ - 47 - ], - "562": [ - 47 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 40, - "start": 16, - "tree_index": 44 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 55, - "start": 46, - "tree_index": 45 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 194, - "start": 56, - "tree_index": 46 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 359, - "start": 196, - "tree_index": 47 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 390, - "start": 365, - "tree_index": 48 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 453, - "start": 395, - "tree_index": 49 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 484, - "start": 458, - "tree_index": 50 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 517, - "start": 489, - "tree_index": 51 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 553, - "start": 522, - "tree_index": 52 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 578, - "start": 554, - "tree_index": 53 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 605, - "start": 583, - "tree_index": 54 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 812, - "start": 611, - "tree_index": 55 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 880, - "start": 818, - "tree_index": 56 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 922, - "start": 886, - "tree_index": 57 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 933, - "start": 928, - "tree_index": 58 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 944, - "start": 938, - "tree_index": 59 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 962, - "start": 949, - "tree_index": 60 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 972, - "start": 967, - "tree_index": 61 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1002, - "start": 978, - "tree_index": 62 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1032, - "start": 1008, - "tree_index": 63 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1067, - "start": 1037, - "tree_index": 64 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1238, - "start": 1069, - "tree_index": 65 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 1269, - "start": 1240, - "tree_index": 66 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1307, - "start": 1275, - "tree_index": 67 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1321, - "start": 1313, - "tree_index": 68 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1331, - "start": 1326, - "tree_index": 69 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1349, - "start": 1336, - "tree_index": 70 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1364, - "start": 1355, - "tree_index": 71 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1381, - "start": 1369, - "tree_index": 72 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1398, - "start": 1386, - "tree_index": 73 - }, - { - "classes": [], - "depth": 3, - "end": 40, - "start": 23, - "tree_index": 119 - }, - { - "classes": [], - "depth": 3, - "end": 79, - "start": 69, - "tree_index": 123 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 104, - "start": 89, - "tree_index": 124 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 194, - "start": 105, - "tree_index": 125 - }, - { - "classes": [], - "depth": 3, - "end": 217, - "start": 209, - "tree_index": 127 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 322, - "start": 219, - "tree_index": 128 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 359, - "start": 323, - "tree_index": 129 - }, - { - "classes": [], - "depth": 3, - "end": 390, - "start": 369, - "tree_index": 131 - }, - { - "classes": [], - "depth": 3, - "end": 453, - "start": 404, - "tree_index": 133 - }, - { - "classes": [], - "depth": 3, - "end": 484, - "start": 458, - "tree_index": 134 - }, - { - "classes": [], - "depth": 3, - "end": 517, - "start": 489, - "tree_index": 135 - }, - { - "classes": [], - "depth": 3, - "end": 553, - "start": 522, - "tree_index": 136 - }, - { - "classes": [], - "depth": 3, - "end": 564, - "start": 563, - "tree_index": 137 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 578, - "start": 574, - "tree_index": 138 - }, - { - "classes": [], - "depth": 3, - "end": 605, - "start": 583, - "tree_index": 139 - }, - { - "classes": [], - "depth": 3, - "end": 812, - "start": 618, - "tree_index": 140 - }, - { - "classes": [], - "depth": 3, - "end": 880, - "start": 825, - "tree_index": 141 - }, - { - "classes": [], - "depth": 3, - "end": 922, - "start": 893, - "tree_index": 142 - }, - { - "classes": [], - "depth": 3, - "end": 962, - "start": 956, - "tree_index": 148 - }, - { - "classes": [], - "depth": 3, - "end": 1002, - "start": 978, - "tree_index": 150 - }, - { - "classes": [], - "depth": 3, - "end": 1032, - "start": 1015, - "tree_index": 151 - }, - { - "classes": [], - "depth": 3, - "end": 1067, - "start": 1044, - "tree_index": 152 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1209, - "start": 1069, - "tree_index": 153 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1238, - "start": 1231, - "tree_index": 154 - }, - { - "classes": [], - "depth": 3, - "end": 1254, - "start": 1250, - "tree_index": 155 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1269, - "start": 1264, - "tree_index": 156 - }, - { - "classes": [], - "depth": 3, - "end": 1307, - "start": 1282, - "tree_index": 157 - }, - { - "classes": [], - "depth": 3, - "end": 1349, - "start": 1343, - "tree_index": 160 - }, - { - "classes": [], - "depth": 3, - "end": 1364, - "start": 1359, - "tree_index": 162 - }, - { - "classes": [], - "depth": 3, - "end": 1381, - "start": 1369, - "tree_index": 163 - }, - { - "classes": [], - "depth": 3, - "end": 1398, - "start": 1386, - "tree_index": 164 - }, - { - "classes": [], - "depth": 4, - "end": 35, - "start": 23, - "tree_index": 214 - }, - { - "classes": [], - "depth": 4, - "end": 74, - "start": 69, - "tree_index": 220 - }, - { - "classes": [], - "depth": 4, - "end": 104, - "start": 89, - "tree_index": 222 - }, - { - "classes": [], - "depth": 4, - "end": 134, - "start": 122, - "tree_index": 224 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 170, - "start": 148, - "tree_index": 225 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 194, - "start": 183, - "tree_index": 226 - }, - { - "classes": [], - "depth": 4, - "end": 214, - "start": 209, - "tree_index": 228 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 267, - "start": 244, - "tree_index": 230 - }, - { - "classes": [], - "depth": 4, - "end": 340, - "start": 334, - "tree_index": 232 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 359, - "start": 354, - "tree_index": 233 - }, - { - "classes": [], - "depth": 4, - "end": 378, - "start": 369, - "tree_index": 235 - }, - { - "classes": [], - "depth": 4, - "end": 390, - "start": 381, - "tree_index": 237 - }, - { - "classes": [], - "depth": 4, - "end": 396, - "start": 395, - "tree_index": 238 - }, - { - "classes": [], - "depth": 4, - "end": 432, - "start": 405, - "tree_index": 240 - }, - { - "classes": [ - "loop" - ], - "depth": 4, - "end": 452, - "start": 433, - "tree_index": 241 - }, - { - "classes": [], - "depth": 4, - "end": 463, - "start": 458, - "tree_index": 242 - }, - { - "classes": [], - "depth": 4, - "end": 483, - "start": 464, - "tree_index": 243 - }, - { - "classes": [], - "depth": 4, - "end": 494, - "start": 489, - "tree_index": 244 - }, - { - "classes": [], - "depth": 4, - "end": 516, - "start": 495, - "tree_index": 245 - }, - { - "classes": [], - "depth": 4, - "end": 527, - "start": 522, - "tree_index": 246 - }, - { - "classes": [], - "depth": 4, - "end": 552, - "start": 528, - "tree_index": 247 - }, - { - "classes": [], - "depth": 4, - "end": 588, - "start": 583, - "tree_index": 249 - }, - { - "classes": [], - "depth": 4, - "end": 604, - "start": 589, - "tree_index": 250 - }, - { - "classes": [], - "depth": 4, - "end": 729, - "start": 618, - "tree_index": 251 - }, - { - "classes": [], - "depth": 4, - "end": 812, - "start": 733, - "tree_index": 253 - }, - { - "classes": [], - "depth": 4, - "end": 859, - "start": 825, - "tree_index": 254 - }, - { - "classes": [], - "depth": 4, - "end": 917, - "start": 893, - "tree_index": 257 - }, - { - "classes": [], - "depth": 4, - "end": 957, - "start": 956, - "tree_index": 262 - }, - { - "classes": [], - "depth": 4, - "end": 983, - "start": 978, - "tree_index": 266 - }, - { - "classes": [], - "depth": 4, - "end": 988, - "start": 984, - "tree_index": 267 - }, - { - "classes": [], - "depth": 4, - "end": 995, - "start": 990, - "tree_index": 268 - }, - { - "classes": [], - "depth": 4, - "end": 1001, - "start": 997, - "tree_index": 269 - }, - { - "classes": [], - "depth": 4, - "end": 1027, - "start": 1015, - "tree_index": 270 - }, - { - "classes": [], - "depth": 4, - "end": 1057, - "start": 1044, - "tree_index": 273 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1104, - "start": 1086, - "tree_index": 276 - }, - { - "classes": [], - "depth": 4, - "end": 1238, - "start": 1231, - "tree_index": 280 - }, - { - "classes": [], - "depth": 4, - "end": 1302, - "start": 1282, - "tree_index": 282 - }, - { - "classes": [], - "depth": 4, - "end": 1344, - "start": 1343, - "tree_index": 286 - }, - { - "classes": [], - "depth": 4, - "end": 1362, - "start": 1359, - "tree_index": 290 - }, - { - "classes": [], - "depth": 4, - "end": 1378, - "start": 1369, - "tree_index": 291 - }, - { - "classes": [], - "depth": 4, - "end": 1380, - "start": 1379, - "tree_index": 292 - }, - { - "classes": [], - "depth": 4, - "end": 1395, - "start": 1386, - "tree_index": 293 - }, - { - "classes": [], - "depth": 4, - "end": 1397, - "start": 1396, - "tree_index": 294 - }, - { - "classes": [], - "depth": 5, - "end": 32, - "start": 23, - "tree_index": 322 - }, - { - "classes": [], - "depth": 5, - "end": 100, - "start": 89, - "tree_index": 325 - }, - { - "classes": [], - "depth": 5, - "end": 127, - "start": 122, - "tree_index": 328 - }, - { - "classes": [], - "depth": 5, - "end": 133, - "start": 128, - "tree_index": 329 - }, - { - "classes": [], - "depth": 5, - "end": 170, - "start": 148, - "tree_index": 330 - }, - { - "classes": [], - "depth": 5, - "end": 194, - "start": 183, - "tree_index": 331 - }, - { - "classes": [], - "depth": 5, - "end": 267, - "start": 244, - "tree_index": 333 - }, - { - "classes": [], - "depth": 5, - "end": 300, - "start": 283, - "tree_index": 334 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 322, - "start": 314, - "tree_index": 335 - }, - { - "classes": [], - "depth": 5, - "end": 335, - "start": 334, - "tree_index": 336 - }, - { - "classes": [], - "depth": 5, - "end": 376, - "start": 369, - "tree_index": 339 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 381, - "tree_index": 340 - }, - { - "classes": [], - "depth": 5, - "end": 411, - "start": 406, - "tree_index": 342 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 431, - "start": 412, - "tree_index": 343 - }, - { - "classes": [], - "depth": 5, - "end": 452, - "start": 442, - "tree_index": 345 - }, - { - "classes": [], - "depth": 5, - "end": 465, - "start": 464, - "tree_index": 347 - }, - { - "classes": [], - "depth": 5, - "end": 497, - "start": 496, - "tree_index": 350 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 515, - "start": 498, - "tree_index": 351 - }, - { - "classes": [], - "depth": 5, - "end": 530, - "start": 529, - "tree_index": 353 - }, - { - "classes": [], - "depth": 5, - "end": 533, - "start": 532, - "tree_index": 354 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 551, - "start": 534, - "tree_index": 355 - }, - { - "classes": [], - "depth": 5, - "end": 590, - "start": 589, - "tree_index": 357 - }, - { - "classes": [], - "depth": 5, - "end": 604, - "start": 593, - "tree_index": 359 - }, - { - "classes": [], - "depth": 5, - "end": 630, - "start": 618, - "tree_index": 360 - }, - { - "classes": [], - "depth": 5, - "end": 657, - "start": 640, - "tree_index": 361 - }, - { - "classes": [], - "depth": 5, - "end": 751, - "start": 734, - "tree_index": 365 - }, - { - "classes": [], - "depth": 5, - "end": 811, - "start": 782, - "tree_index": 367 - }, - { - "classes": [], - "depth": 5, - "end": 837, - "start": 825, - "tree_index": 369 - }, - { - "classes": [], - "depth": 5, - "end": 897, - "start": 893, - "tree_index": 376 - }, - { - "classes": [], - "depth": 5, - "end": 916, - "start": 898, - "tree_index": 377 - }, - { - "classes": [], - "depth": 5, - "end": 1104, - "start": 1092, - "tree_index": 392 - }, - { - "classes": [], - "depth": 5, - "end": 1130, - "start": 1116, - "tree_index": 393 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 1149, - "start": 1145, - "tree_index": 395 - }, - { - "classes": [], - "depth": 5, - "end": 1170, - "start": 1161, - "tree_index": 396 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 1184, - "start": 1180, - "tree_index": 397 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 1209, - "start": 1205, - "tree_index": 398 - }, - { - "classes": [], - "depth": 5, - "end": 1236, - "start": 1231, - "tree_index": 399 - }, - { - "classes": [], - "depth": 5, - "end": 1298, - "start": 1283, - "tree_index": 400 - }, - { - "classes": [], - "depth": 6, - "end": 93, - "start": 89, - "tree_index": 419 - }, - { - "classes": [], - "depth": 6, - "end": 133, - "start": 132, - "tree_index": 425 - }, - { - "classes": [], - "depth": 6, - "end": 163, - "start": 148, - "tree_index": 426 - }, - { - "classes": [], - "depth": 6, - "end": 169, - "start": 164, - "tree_index": 427 - }, - { - "classes": [], - "depth": 6, - "end": 188, - "start": 183, - "tree_index": 428 - }, - { - "classes": [], - "depth": 6, - "end": 193, - "start": 189, - "tree_index": 429 - }, - { - "classes": [], - "depth": 6, - "end": 249, - "start": 244, - "tree_index": 430 - }, - { - "classes": [], - "depth": 6, - "end": 266, - "start": 250, - "tree_index": 431 - }, - { - "classes": [], - "depth": 6, - "end": 407, - "start": 406, - "tree_index": 436 - }, - { - "classes": [], - "depth": 6, - "end": 411, - "start": 410, - "tree_index": 438 - }, - { - "classes": [], - "depth": 6, - "end": 431, - "start": 421, - "tree_index": 440 - }, - { - "classes": [], - "depth": 6, - "end": 447, - "start": 442, - "tree_index": 442 - }, - { - "classes": [], - "depth": 6, - "end": 483, - "start": 475, - "tree_index": 446 - }, - { - "classes": [], - "depth": 6, - "end": 515, - "start": 507, - "tree_index": 449 - }, - { - "classes": [], - "depth": 6, - "end": 551, - "start": 543, - "tree_index": 453 - }, - { - "classes": [], - "depth": 6, - "end": 602, - "start": 593, - "tree_index": 455 - }, - { - "classes": [], - "depth": 6, - "end": 644, - "start": 640, - "tree_index": 457 - }, - { - "classes": [], - "depth": 6, - "end": 656, - "start": 645, - "tree_index": 458 - }, - { - "classes": [], - "depth": 6, - "end": 738, - "start": 734, - "tree_index": 461 - }, - { - "classes": [], - "depth": 6, - "end": 750, - "start": 739, - "tree_index": 462 - }, - { - "classes": [], - "depth": 6, - "end": 786, - "start": 782, - "tree_index": 463 - }, - { - "classes": [], - "depth": 6, - "end": 1102, - "start": 1092, - "tree_index": 487 - }, - { - "classes": [], - "depth": 6, - "end": 1298, - "start": 1293, - "tree_index": 493 - }, - { - "classes": [], - "depth": 7, - "end": 156, - "start": 148, - "tree_index": 497 - }, - { - "classes": [], - "depth": 7, - "end": 165, - "start": 164, - "tree_index": 499 - }, - { - "classes": [], - "depth": 7, - "end": 169, - "start": 168, - "tree_index": 501 - }, - { - "classes": [], - "depth": 7, - "end": 261, - "start": 250, - "tree_index": 505 - }, - { - "classes": [], - "depth": 7, - "end": 426, - "start": 421, - "tree_index": 511 - }, - { - "classes": [], - "depth": 7, - "end": 480, - "start": 475, - "tree_index": 515 - }, - { - "classes": [], - "depth": 7, - "end": 512, - "start": 507, - "tree_index": 518 - }, - { - "classes": [], - "depth": 7, - "end": 548, - "start": 543, - "tree_index": 521 - }, - { - "classes": [], - "depth": 7, - "end": 650, - "start": 645, - "tree_index": 525 - }, - { - "classes": [], - "depth": 7, - "end": 744, - "start": 739, - "tree_index": 530 - }, - { - "classes": [], - "depth": 7, - "end": 1291, - "start": 1290, - "tree_index": 538 - }, - { - "classes": [], - "depth": 7, - "end": 1294, - "start": 1293, - "tree_index": 539 - }, - { - "classes": [], - "depth": 8, - "end": 152, - "start": 148, - "tree_index": 542 - }, - { - "classes": [], - "depth": 8, - "end": 260, - "start": 255, - "tree_index": 549 - }, - { - "classes": [], - "depth": 9, - "end": 256, - "start": 255, - "tree_index": 562 - } - ] - }, - "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n dummy(n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", - "lineno": 63, - "name": "main" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "3" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "168": [ - "3", - "int", - {} - ], - "172": [ - "3", - "int", - {} - ], - "174": [ - "2", - "int", - { - "inner_calls": [ - "test_id_3" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {} - ], - "299": [ - "2", - "int", - {} - ], - "409": [ - "3", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "6", - "int", - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "long", - "set", - "str", - "tuple", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 77 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 168 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 172 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 174 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 409 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "6", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "2" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "168": [ - "2", - "int", - {} - ], - "172": [ - "2", - "int", - {} - ], - "174": [ - "1", - "int", - { - "inner_calls": [ - "test_id_4" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {} - ], - "299": [ - "1", - "int", - {} - ], - "409": [ - "2", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "2", - "int", - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "long", - "set", - "str", - "tuple", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 77 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 168 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 172 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 174 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 409 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "2", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "1" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "168": [ - "1", - "int", - {} - ], - "19": [ - "", - -2, - {} - ], - "78": [ - "True", - "bool", - {} - ], - "79": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "long", - "set", - "str", - "tuple", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 77 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 168 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 172 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 174 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 409 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "1", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "111": [ - "", - -2, - {} - ], - "205": [ - "", - "MyClass", - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "getset_descriptor", - "instancemethod", - "int", - "list", - "long", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 111 - }, - { - "classes": [], - "depth": 4, - "end": 16, - "start": 12, - "tree_index": 203 - }, - { - "classes": [], - "depth": 4, - "end": 23, - "start": 18, - "tree_index": 204 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 205 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "instancemethod", - "int", - "list", - "long", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 18, - "start": 14, - "tree_index": 207 - } - ] - }, - "html_body": " @eye\n def __enter__(self):\n pass", - "lineno": 54, - "name": "MyClass.__enter__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "exc_type", - "None" - ], - [ - "exc_val", - "None" - ], - [ - "exc_tb", - "None" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "117": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "instancemethod", - "int", - "list", - "long", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 59, - "start": 55, - "tree_index": 117 - }, - { - "classes": [], - "depth": 4, - "end": 17, - "start": 13, - "tree_index": 209 - }, - { - "classes": [], - "depth": 4, - "end": 27, - "start": 19, - "tree_index": 210 - }, - { - "classes": [], - "depth": 4, - "end": 36, - "start": 29, - "tree_index": 211 - }, - { - "classes": [], - "depth": 4, - "end": 44, - "start": 38, - "tree_index": 212 - } - ] - }, - "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", - "lineno": 58, - "name": "MyClass.__exit__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "111": [ - "", - -2, - {} - ], - "205": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "instancemethod", - "int", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 111 - }, - { - "classes": [], - "depth": 4, - "end": 16, - "start": 12, - "tree_index": 203 - }, - { - "classes": [], - "depth": 4, - "end": 23, - "start": 18, - "tree_index": 204 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 205 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "[0, 1, 2, ..., 997, 998, 999]" - ], - [ - "pos2", - "'hello'" - ], - [ - "key1", - "3" - ], - [ - "key2", - "8" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'kwarg1': {'key': 'value'}}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "185": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "186": [ - "'hello'", - "str", - { - "len": 5 - } - ], - "187": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "93": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "instancemethod", - "int", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 21, - "start": 17, - "tree_index": 87 - }, - { - "classes": [], - "depth": 3, - "end": 27, - "start": 23, - "tree_index": 88 - }, - { - "classes": [], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 89 - }, - { - "classes": [], - "depth": 3, - "end": 41, - "start": 37, - "tree_index": 90 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 93 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 185 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 187 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "1" - ], - [ - "pos2", - "2" - ], - [ - "key1", - "3" - ], - [ - "key2", - "4" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'k': 23}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "185": [ - "1", - "int", - {} - ], - "186": [ - "2", - "int", - {} - ], - "187": [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "93": [ - "[1, 2, {'k': 23}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "instancemethod", - "int", - "list", - "long", - "member_descriptor", - "set", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 21, - "start": 17, - "tree_index": 87 - }, - { - "classes": [], - "depth": 3, - "end": 27, - "start": 23, - "tree_index": 88 - }, - { - "classes": [], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 89 - }, - { - "classes": [], - "depth": 3, - "end": 41, - "start": 37, - "tree_index": 90 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 93 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 185 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 187 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[1, 2, {'k': 23}]", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "34": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "101": [ - "", - "islice", - {} - ], - "102": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "195": [ - "", - "type", - {}, - [ - "__doc__", - [ - "'Make an itera...rd line).\\n '", - "str", - { - "len": 721 - } - ] - ], - [ - "__iter__", - [ - "", - "function", - {} - ] - ], - [ - "__new__", - [ - "", - "staticmethod", - {} - ] - ], - [ - "next", - [ - "", - "function", - {} - ] - ] - ], - "196": [ - "", - "generator", - {} - ], - "198": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "310": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "311": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "34": [ - "", - -2, - { - "inner_calls": [ - "test_id_12" - ] - } - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "instancemethod", - "int", - "islice", - "list", - "long", - "member_descriptor", - "set", - "staticmethod", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 34 - } - ], - "node_loops": { - "102": [ - 34 - ], - "198": [ - 34 - ], - "310": [ - 34 - ], - "311": [ - 34 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 61, - "start": 18, - "tree_index": 34 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 99 - }, - { - "classes": [], - "depth": 3, - "end": 43, - "start": 31, - "tree_index": 101 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 61, - "start": 53, - "tree_index": 102 - }, - { - "classes": [], - "depth": 4, - "end": 37, - "start": 31, - "tree_index": 195 - }, - { - "classes": [], - "depth": 4, - "end": 39, - "start": 38, - "tree_index": 196 - }, - { - "classes": [], - "depth": 4, - "end": 61, - "start": 53, - "tree_index": 198 - }, - { - "classes": [], - "depth": 5, - "end": 58, - "start": 53, - "tree_index": 310 - }, - { - "classes": [], - "depth": 5, - "end": 60, - "start": 59, - "tree_index": 311 - } - ] - }, - "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", - "lineno": 37, - "name": "use_gen_1" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "31": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - }, - { - "index": 4, - "loops": {} - }, - { - "index": 5, - "loops": {} - } - ] - }, - "node_values": { - "192": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "307": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ], - "4": [ - "4", - "int", - {} - ], - "5": [ - "5", - "int", - {} - ] - }, - "31": [ - "", - -2, - {} - ], - "96": [ - "[0, 1, 2, 3, 4, 5]", - "list", - { - "len": 6 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "5", - [ - "5", - "int", - {} - ] - ] - ], - "97": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "instancemethod", - "int", - "islice", - "list", - "long", - "member_descriptor", - "set", - "staticmethod", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 20, - "start": 19, - "tree_index": 31 - } - ], - "node_loops": { - "192": [ - 31 - ], - "307": [ - 31 - ], - "97": [ - 31 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 49, - "start": 11, - "tree_index": 31 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 24, - "tree_index": 96 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 42, - "tree_index": 97 - }, - { - "classes": [], - "depth": 4, - "end": 29, - "start": 24, - "tree_index": 190 - }, - { - "classes": [], - "depth": 4, - "end": 49, - "start": 42, - "tree_index": 192 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 307 - } - ] - }, - "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", - "lineno": 31, - "name": "gen" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "37": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "106": [ - "", - "generator", - {} - ], - "107": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "202": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "312": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "313": { - "0": [ - "3", - "int", - {} - ], - "1": [ - "4", - "int", - {} - ], - "2": [ - "5", - "int", - {} - ] - }, - "37": [ - "", - -2, - {} - ] - }, - "num_special_types": 13, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "instancemethod", - "int", - "islice", - "list", - "long", - "member_descriptor", - "set", - "staticmethod", - "str", - "tuple", - "type", - "unicode" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 37 - } - ], - "node_loops": { - "107": [ - 37 - ], - "202": [ - 37 - ], - "312": [ - 37 - ], - "313": [ - 37 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 50, - "start": 18, - "tree_index": 37 - }, - { - "classes": [], - "depth": 3, - "end": 15, - "start": 14, - "tree_index": 104 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 31, - "tree_index": 106 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 50, - "start": 42, - "tree_index": 107 - }, - { - "classes": [], - "depth": 4, - "end": 50, - "start": 42, - "tree_index": 202 - }, - { - "classes": [], - "depth": 5, - "end": 47, - "start": 42, - "tree_index": 312 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 313 - } - ] - }, - "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", - "lineno": 43, - "name": "use_gen_2" - }, - "return_value": "None", - "traceback": null - } -] \ No newline at end of file diff --git a/tests/golden-files/pypy2.7/traced.json b/tests/golden-files/pypy2.7/traced.json deleted file mode 100644 index 0637a08..0000000 --- a/tests/golden-files/pypy2.7/traced.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git a/tests/golden-files/pypy3.5/gold.json b/tests/golden-files/pypy3.5/gold.json deleted file mode 100644 index 70d7779..0000000 --- a/tests/golden-files/pypy3.5/gold.json +++ /dev/null @@ -1,13814 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": { - "240": [ - { - "index": 0, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 1, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "335": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 97, - "loops": {} - }, - { - "index": 98, - "loops": {} - }, - { - "index": 99, - "loops": {} - } - ] - } - } - ], - "343": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "347": [ - { - "index": 0, - "loops": {} - } - ], - "46": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ] - } - }, - { - "index": 97, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 191, - "loops": {} - }, - { - "index": 192, - "loops": {} - }, - { - "index": 193, - "loops": {} - } - ] - } - }, - { - "index": 98, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 193, - "loops": {} - }, - { - "index": 194, - "loops": {} - }, - { - "index": 195, - "loops": {} - } - ] - } - }, - { - "index": 99, - "loops": { - "128": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 195, - "loops": {} - }, - { - "index": 196, - "loops": {} - }, - { - "index": 197, - "loops": {} - } - ] - } - } - ], - "47": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - } - ], - "66": [ - { - "index": 0, - "loops": {} - } - ] - }, - "node_values": { - "122": [ - "True", - "bool", - {} - ], - "126": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "127": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "128": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "130": [ - "range(0, 6)", - "range", - { - "len": 6 - } - ], - "131": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "132": { - "1": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "134": [ - "", - "MyClass", - { - "inner_calls": [ - "test_id_5" - ] - } - ], - "136": [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "3", - [ - "[3, 4, 5, ..., 100, 101, 102]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "3", - "int", - {} - ] - ], - [ - "1", - [ - "4", - "int", - {} - ] - ], - [ - "2", - [ - "5", - "int", - {} - ] - ], - [ - "97", - [ - "100", - "int", - {} - ] - ], - [ - "98", - [ - "101", - "int", - {} - ] - ], - [ - "99", - [ - "102", - "int", - {} - ] - ] - ] - ], - [ - "4", - [ - "[4, 5, 6, ..., 101, 102, 103]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "4", - "int", - {} - ] - ], - [ - "1", - [ - "5", - "int", - {} - ] - ], - [ - "2", - [ - "6", - "int", - {} - ] - ], - [ - "97", - [ - "101", - "int", - {} - ] - ], - [ - "98", - [ - "102", - "int", - {} - ] - ], - [ - "99", - [ - "103", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 192, 193, 194]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "97", - [ - "192", - "int", - {} - ] - ], - [ - "98", - [ - "193", - "int", - {} - ] - ], - [ - "99", - [ - "194", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 193, 194, 195]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "97", - [ - "193", - "int", - {} - ] - ], - [ - "98", - [ - "194", - "int", - {} - ] - ], - [ - "99", - [ - "195", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ], - "137": [ - "None", - "NoneType", - {} - ], - "138": [ - "None", - "NoneType", - {} - ], - "139": [ - "None", - "NoneType", - {} - ], - "141": [ - "", - -2, - {} - ], - "142": [ - "None", - "NoneType", - {} - ], - "143": [ - "True", - "bool", - {} - ], - "144": [ - "True", - "bool", - {} - ], - "145": [ - "True", - "bool", - {} - ], - "151": [ - "True", - "bool", - {} - ], - "153": [ - "None", - "NoneType", - {} - ], - "154": [ - "True", - "bool", - {} - ], - "155": [ - "True", - "bool", - {} - ], - "156": [ - "ValueError", - -1, - {} - ], - "160": [ - "", - -2, - {} - ], - "162": { - "0": [ - "", - -2, - {} - ] - }, - "163": [ - "True", - "bool", - {} - ], - "166": [ - "True", - "bool", - {} - ], - "168": [ - "", - "generator", - {} - ], - "169": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_11" - ] - } - ], - "170": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_13" - ] - } - ], - "213": [ - "6", - "int", - { - "inner_calls": [ - "test_id_2" - ] - } - ], - "221": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "223": { - "0": [ - "range(0, 0)", - "range", - { - "len": 0 - } - ], - "1": [ - "range(0, 2)", - "range", - { - "len": 2 - } - ], - "2": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "3": [ - "range(0, 194)", - "range", - { - "len": 194 - } - ], - "4": [ - "range(0, 196)", - "range", - { - "len": 196 - } - ], - "5": [ - "range(0, 198)", - "range", - { - "len": 198 - } - ] - }, - "224": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "225": { - "1": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ] - }, - "2": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "3": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "4": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "5": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - } - }, - "229": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ] - }, - "231": { - "1": [ - "False", - "bool", - {} - ], - "3": [ - "True", - "bool", - {} - ] - }, - "232": { - "3": [ - "", - -2, - {} - ] - }, - "234": [ - "", - "MyClass", - {} - ], - "236": [ - "", - "MyClass", - {} - ], - "237": [ - "", - "MyClass", - {} - ], - "239": { - "0": [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "95", - [ - "95", - "int", - {} - ] - ], - [ - "96", - [ - "96", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ], - "1": [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - }, - "240": [ - "", - -2, - {} - ], - "241": [ - "", - "function", - {} - ], - "242": [ - " at 0xABC>", - "generator", - {} - ], - "243": [ - "", - "function", - {} - ], - "244": [ - "{0, 1, 2, 3}", - "set", - { - "len": 4 - }, - [ - "<0>", - [ - "0", - "int", - {} - ] - ], - [ - "<1>", - [ - "1", - "int", - {} - ] - ], - [ - "<2>", - [ - "2", - "int", - {} - ] - ], - [ - "<3>", - [ - "3", - "int", - {} - ] - ] - ], - "245": [ - "", - "function", - {} - ], - "246": [ - "{0: 0}", - "dict", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "247": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "248": [ - "", - "function", - {} - ], - "249": [ - "", - "SlotClass", - { - "inner_calls": [ - "test_id_8" - ] - }, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "250": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "inner_calls": [ - "test_id_9" - ], - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "252": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ], - "253": [ - "[1, 2, {'k': 23}]", - "list", - { - "inner_calls": [ - "test_id_10" - ], - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ], - "256": [ - "3", - "int", - {} - ], - "261": [ - "6", - "int", - {} - ], - "265": [ - "", - "function", - {} - ], - "269": [ - "2", - "int", - {} - ], - "272": [ - "(1, 2)", - "tuple", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ], - "275": [ - "ValueError()", - "ValueError", - {} - ], - "280": [ - "", - -2, - {} - ], - "281": [ - "None", - "NoneType", - {} - ], - "282": [ - "8", - "int", - {} - ], - "286": [ - "4", - "int", - {} - ], - "290": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "291": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "292": [ - "", - "generator", - {} - ], - "293": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "294": [ - "", - "generator", - {} - ], - "314": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "317": { - "0": [ - "", - "method", - {} - ], - "1": [ - "", - "method", - {} - ], - "2": [ - "", - "method", - {} - ], - "3": [ - "", - "method", - {} - ], - "4": [ - "", - "method", - {} - ], - "5": [ - "", - "method", - {} - ] - }, - "321": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - }, - "322": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "323": { - "1": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ] - }, - "2": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "3": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "4": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "5": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - } - }, - "325": { - "1": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ] - }, - "327": { - "0": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "328": { - "1": [ - "1", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "331": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__exit__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "332": [ - "", - "type", - {}, - [ - "__add__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__enter__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__exit__", - [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ], - "334": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "3", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "100", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "100", - "int", - {} - ], - "5": [ - "101", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "194", - "int", - {} - ], - "4": [ - "195", - "int", - {} - ], - "5": [ - "196", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "196", - "int", - {} - ], - "4": [ - "197", - "int", - {} - ], - "5": [ - "198", - "int", - {} - ] - } - }, - "335": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "337": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "342": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "343": [ - "", - -2, - {} - ], - "345": { - "0": [ - "0", - "int", - {} - ] - }, - "346": { - "0": [ - "0", - "int", - {} - ] - }, - "347": [ - "", - -2, - {} - ], - "350": [ - "", - "MyClass", - {}, - [ - "list", - [ - "[[0, 1, 2, ..., 97, 98, 99], [1, 2, 3, ..., 98, 99, 100], [2, 3, 4, ..., 99, 100, 101], ..., [97, 98, 99, ..., 194, 195, 196], [98, 99, 100, ..., 195, 196, 197], [99, 100, 101, ..., 196, 197, 198]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[0, 1, 2, ..., 97, 98, 99]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "97", - [ - "97", - "int", - {} - ] - ], - [ - "98", - [ - "98", - "int", - {} - ] - ], - [ - "99", - [ - "99", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "[1, 2, 3, ..., 98, 99, 100]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "3", - "int", - {} - ] - ], - [ - "97", - [ - "98", - "int", - {} - ] - ], - [ - "98", - [ - "99", - "int", - {} - ] - ], - [ - "99", - [ - "100", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, ..., 99, 100, 101]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "97", - [ - "99", - "int", - {} - ] - ], - [ - "98", - [ - "100", - "int", - {} - ] - ], - [ - "99", - [ - "101", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 194, 195, 196]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "97", - [ - "194", - "int", - {} - ] - ], - [ - "98", - [ - "195", - "int", - {} - ] - ], - [ - "99", - [ - "196", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 195, 196, 197]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "97", - [ - "195", - "int", - {} - ] - ], - [ - "98", - [ - "196", - "int", - {} - ] - ], - [ - "99", - [ - "197", - "int", - {} - ] - ] - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 196, 197, 198]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "97", - [ - "196", - "int", - {} - ] - ], - [ - "98", - [ - "197", - "int", - {} - ] - ], - [ - "99", - [ - "198", - "int", - {} - ] - ] - ] - ] - ] - ] - ], - "352": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ], - "353": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "354": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "358": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "360": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "362": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "370": [ - "'1 + 2'", - "str", - { - "len": 5 - } - ], - "385": [ - "", - "function", - {} - ], - "386": [ - ". at 0xABC>", - "function", - {} - ], - "405": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[[]]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "2": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [94, 95, 96, ..., 279, 280, 281], [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287]]", - "list", - { - "len": 97 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "94", - [ - "[94, 95, 96, ..., 279, 280, 281]", - "list", - { - "len": 188 - }, - [ - "0", - [ - "94", - "int", - {} - ] - ], - [ - "1", - [ - "95", - "int", - {} - ] - ], - [ - "2", - [ - "96", - "int", - {} - ] - ], - [ - "185", - [ - "279", - "int", - {} - ] - ], - [ - "186", - [ - "280", - "int", - {} - ] - ], - [ - "187", - [ - "281", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - }, - [ - "0", - [ - "95", - "int", - {} - ] - ], - [ - "1", - [ - "96", - "int", - {} - ] - ], - [ - "2", - [ - "97", - "int", - {} - ] - ], - [ - "187", - [ - "282", - "int", - {} - ] - ], - [ - "188", - [ - "283", - "int", - {} - ] - ], - [ - "189", - [ - "284", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ], - [ - "3", - [ - "5", - "int", - {} - ] - ] - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "96", - "int", - {} - ] - ], - [ - "1", - [ - "97", - "int", - {} - ] - ], - [ - "2", - [ - "98", - "int", - {} - ] - ], - [ - "189", - [ - "285", - "int", - {} - ] - ], - [ - "190", - [ - "286", - "int", - {} - ] - ], - [ - "191", - [ - "287", - "int", - {} - ] - ] - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ], - [ - "193", - [ - "290", - "int", - {} - ] - ] - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ], - [ - "195", - [ - "293", - "int", - {} - ] - ] - ] - ] - ] - }, - "411": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "412": { - "1": { - "0": [ - "", - "method", - {} - ], - "1": [ - "", - "method", - {} - ] - }, - "2": { - "0": [ - "", - "method", - {} - ], - "1": [ - "", - "method", - {} - ], - "2": [ - "", - "method", - {} - ], - "3": [ - "", - "method", - {} - ] - }, - "3": { - "0": [ - "", - "method", - {} - ], - "1": [ - "", - "method", - {} - ], - "2": [ - "", - "method", - {} - ], - "3": [ - "", - "method", - {} - ], - "4": [ - "", - "method", - {} - ], - "5": [ - "", - "method", - {} - ] - }, - "4": { - "0": [ - "", - "method", - {} - ], - "1": [ - "", - "method", - {} - ], - "2": [ - "", - "method", - {} - ], - "3": [ - "", - "method", - {} - ], - "4": [ - "", - "method", - {} - ], - "5": [ - "", - "method", - {} - ] - }, - "5": { - "0": [ - "", - "method", - {} - ], - "1": [ - "", - "method", - {} - ], - "2": [ - "", - "method", - {} - ], - "3": [ - "", - "method", - {} - ], - "4": [ - "", - "method", - {} - ], - "5": [ - "", - "method", - {} - ] - } - }, - "413": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "3", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ], - "3": [ - "5", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "288", - "int", - {} - ], - "4": [ - "289", - "int", - {} - ], - "5": [ - "290", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "100", - "int", - {} - ], - "3": [ - "291", - "int", - {} - ], - "4": [ - "292", - "int", - {} - ], - "5": [ - "293", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "100", - "int", - {} - ], - "2": [ - "101", - "int", - {} - ], - "3": [ - "294", - "int", - {} - ], - "4": [ - "295", - "int", - {} - ], - "5": [ - "296", - "int", - {} - ] - } - }, - "414": { - "1": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ] - }, - "2": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "3": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "4": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - }, - "5": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ], - "4": [ - "", - "function", - {} - ], - "5": [ - "", - "function", - {} - ] - } - }, - "415": { - "1": { - "0": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101]", - "list", - { - "len": 3 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 294, 295, 296]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 294, 295, 296]", - "list", - { - "len": 198 - } - ] - ] - ] - } - }, - "416": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ], - "3": [ - "", - "function", - {} - ] - }, - "417": { - "1": [ - "11.0", - "float", - {} - ], - "3": [ - "11.0", - "float", - {} - ] - }, - "422": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "424": { - "0": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "0", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "0", - "int", - {} - ], - "4": [ - "0", - "int", - {} - ], - "5": [ - "0", - "int", - {} - ] - }, - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "1", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ], - "4": [ - "1", - "int", - {} - ], - "5": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ], - "4": [ - "2", - "int", - {} - ], - "5": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "426": { - "0": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "1": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "2": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "3": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "4": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ], - "5": [ - "range(0, 100)", - "range", - { - "len": 100 - } - ] - }, - "432": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "435": [ - "range(0, 4)", - "range", - { - "len": 4 - } - ], - "439": [ - "range(0, 1)", - "range", - { - "len": 1 - } - ], - "44": [ - "", - -2, - {} - ], - "441": [ - "", - "type", - {}, - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__init__", - [ - "", - "function", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.gold'", - "str", - { - "len": 17 - } - ] - ], - [ - "__slots__", - [ - "('slot1',)", - "tuple", - { - "len": 1 - }, - [ - "0", - [ - "'slot1'", - "str", - { - "len": 5 - } - ] - ] - ] - ], - [ - "slot1", - [ - "", - "member_descriptor", - {} - ] - ] - ], - "444": [ - "range(0, 1000)", - "range", - { - "len": 1000 - } - ], - "448": [ - "range(0, 1000)", - "range", - { - "len": 1000 - } - ], - "45": [ - "", - -2, - {} - ], - "46": [ - "", - -2, - {} - ], - "47": [ - "", - -2, - {} - ], - "478": { - "1": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[1]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ] - ] - }, - "2": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[2]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ] - ], - "2": [ - "[2, 3]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ] - ], - "3": [ - "[2, 3, 4]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "2", - "int", - {} - ] - ], - [ - "1", - [ - "3", - "int", - {} - ] - ], - [ - "2", - [ - "4", - "int", - {} - ] - ] - ] - }, - "3": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[97]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ] - ], - "2": [ - "[97, 98]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ] - ], - "3": [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "188", - [ - "285", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ] - ], - "4": [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "189", - [ - "286", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ] - ], - "5": [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "97", - "int", - {} - ] - ], - [ - "1", - [ - "98", - "int", - {} - ] - ], - [ - "2", - [ - "99", - "int", - {} - ] - ], - [ - "190", - [ - "287", - "int", - {} - ] - ], - [ - "191", - [ - "288", - "int", - {} - ] - ], - [ - "192", - [ - "289", - "int", - {} - ] - ] - ] - }, - "4": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[98]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ] - ], - "2": [ - "[98, 99]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ] - ], - "3": [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "190", - [ - "288", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ] - ], - "4": [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "191", - [ - "289", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ] - ], - "5": [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "98", - "int", - {} - ] - ], - [ - "1", - [ - "99", - "int", - {} - ] - ], - [ - "2", - [ - "100", - "int", - {} - ] - ], - [ - "192", - [ - "290", - "int", - {} - ] - ], - [ - "193", - [ - "291", - "int", - {} - ] - ], - [ - "194", - [ - "292", - "int", - {} - ] - ] - ] - }, - "5": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[99]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ] - ], - "2": [ - "[99, 100]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ] - ], - "3": [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "192", - [ - "291", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ] - ], - "4": [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "193", - [ - "292", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ] - ], - "5": [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - }, - [ - "0", - [ - "99", - "int", - {} - ] - ], - [ - "1", - [ - "100", - "int", - {} - ] - ], - [ - "2", - [ - "101", - "int", - {} - ] - ], - [ - "194", - [ - "293", - "int", - {} - ] - ], - [ - "195", - [ - "294", - "int", - {} - ] - ], - [ - "196", - [ - "295", - "int", - {} - ] - ] - ] - } - }, - "48": [ - "", - -2, - {} - ], - "480": { - "1": { - "0": [ - "1", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "2", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "2", - "int", - {} - ] - }, - "3": { - "0": [ - "97", - "int", - {} - ], - "1": [ - "97", - "int", - {} - ], - "2": [ - "97", - "int", - {} - ], - "3": [ - "97", - "int", - {} - ], - "4": [ - "97", - "int", - {} - ], - "5": [ - "97", - "int", - {} - ] - }, - "4": { - "0": [ - "98", - "int", - {} - ], - "1": [ - "98", - "int", - {} - ], - "2": [ - "98", - "int", - {} - ], - "3": [ - "98", - "int", - {} - ], - "4": [ - "98", - "int", - {} - ], - "5": [ - "98", - "int", - {} - ] - }, - "5": { - "0": [ - "99", - "int", - {} - ], - "1": [ - "99", - "int", - {} - ], - "2": [ - "99", - "int", - {} - ], - "3": [ - "99", - "int", - {} - ], - "4": [ - "99", - "int", - {} - ], - "5": [ - "99", - "int", - {} - ] - } - }, - "482": { - "1": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "3": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "191", - "int", - {} - ], - "4": [ - "192", - "int", - {} - ], - "5": [ - "193", - "int", - {} - ] - }, - "4": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "193", - "int", - {} - ], - "4": [ - "194", - "int", - {} - ], - "5": [ - "195", - "int", - {} - ] - }, - "5": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "195", - "int", - {} - ], - "4": [ - "196", - "int", - {} - ], - "5": [ - "197", - "int", - {} - ] - } - }, - "486": { - "0": [ - "ZeroDivisionError: division by zero", - -1, - {} - ], - "1": [ - "1.0", - "float", - {} - ], - "2": [ - "ZeroDivisionError: division by zero", - -1, - {} - ], - "3": [ - "1.0", - "float", - {} - ] - }, - "49": [ - "", - -2, - {} - ], - "50": [ - "", - -2, - {} - ], - "51": [ - "", - -2, - {} - ], - "52": [ - "", - -2, - {} - ], - "527": { - "1": { - "0": [ - "[[], []]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1]]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1]", - "list", - { - "len": 1 - } - ] - ] - ] - }, - "2": { - "0": [ - "[[], [1, 2], []]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4]", - "list", - { - "len": 3 - } - ] - ] - ] - }, - "3": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], []]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 285, 286, 287]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 285, 286, 287]", - "list", - { - "len": 191 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 286, 287, 288]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 286, 287, 288]", - "list", - { - "len": 192 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [95, 96, 97, ..., 282, 283, 284], [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 287, 288, 289]]", - "list", - { - "len": 98 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "95", - [ - "[95, 96, 97, ..., 282, 283, 284]", - "list", - { - "len": 190 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 287, 288, 289]", - "list", - { - "len": 193 - } - ] - ] - ] - }, - "4": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], []]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 288, 289, 290]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 288, 289, 290]", - "list", - { - "len": 193 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 289, 290, 291]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 289, 290, 291]", - "list", - { - "len": 194 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [96, 97, 98, ..., 285, 286, 287], [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 290, 291, 292]]", - "list", - { - "len": 99 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "96", - [ - "[96, 97, 98, ..., 285, 286, 287]", - "list", - { - "len": 192 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 290, 291, 292]", - "list", - { - "len": 195 - } - ] - ] - ] - }, - "5": { - "0": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], []]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[]", - "list", - { - "len": 0 - } - ] - ] - ], - "1": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99]", - "list", - { - "len": 1 - } - ] - ] - ], - "2": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100]", - "list", - { - "len": 2 - } - ] - ] - ], - "3": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 291, 292, 293]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 291, 292, 293]", - "list", - { - "len": 195 - } - ] - ] - ], - "4": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 292, 293, 294]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 292, 293, 294]", - "list", - { - "len": 196 - } - ] - ] - ], - "5": [ - "[[], [1, 2], [2, 3, 4, 5], ..., [97, 98, 99, ..., 288, 289, 290], [98, 99, 100, ..., 291, 292, 293], [99, 100, 101, ..., 293, 294, 295]]", - "list", - { - "len": 100 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[1, 2]", - "list", - { - "len": 2 - } - ] - ], - [ - "2", - [ - "[2, 3, 4, 5]", - "list", - { - "len": 4 - } - ] - ], - [ - "97", - [ - "[97, 98, 99, ..., 288, 289, 290]", - "list", - { - "len": 194 - } - ] - ], - [ - "98", - [ - "[98, 99, 100, ..., 291, 292, 293]", - "list", - { - "len": 196 - } - ] - ], - [ - "99", - [ - "[99, 100, 101, ..., 293, 294, 295]", - "list", - { - "len": 197 - } - ] - ] - ] - } - }, - "53": [ - "", - -2, - { - "inner_calls": [ - "test_id_6", - "test_id_7" - ] - } - ], - "534": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "0", - "int", - {} - ], - "3": [ - "1", - "int", - {} - ] - }, - "54": [ - "", - -2, - {} - ], - "546": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ] - }, - "55": [ - "", - -2, - {} - ], - "56": [ - "", - -2, - {} - ], - "57": [ - "", - -2, - {} - ], - "58": [ - "", - -2, - {} - ], - "59": [ - "", - -2, - {} - ], - "60": [ - "", - -2, - {} - ], - "61": [ - "", - -2, - {} - ], - "62": [ - "", - -2, - {} - ], - "63": [ - "", - -2, - {} - ], - "64": [ - "", - -2, - {} - ], - "65": [ - "", - -2, - {} - ], - "66": [ - "", - -2, - {} - ], - "67": [ - "", - -2, - {} - ], - "68": [ - "", - -2, - {} - ], - "69": [ - "", - -2, - {} - ], - "70": [ - "", - -2, - {} - ], - "71": [ - "", - -2, - {} - ], - "72": [ - "", - -2, - {} - ], - "73": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method", - "range", - "set", - "staticmethod", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 65, - "start": 64, - "tree_index": 46 - }, - { - "end": 205, - "start": 204, - "tree_index": 47 - }, - { - "end": 1254, - "start": 1250, - "tree_index": 66 - }, - { - "end": 118, - "start": 117, - "tree_index": 128 - }, - { - "end": 438, - "start": 437, - "tree_index": 240 - }, - { - "end": 417, - "start": 416, - "tree_index": 335 - }, - { - "end": 503, - "start": 502, - "tree_index": 343 - }, - { - "end": 539, - "start": 538, - "tree_index": 347 - } - ], - "node_loops": { - "127": [ - 46 - ], - "128": [ - 46 - ], - "131": [ - 47 - ], - "132": [ - 47 - ], - "162": [ - 66 - ], - "221": [ - 46 - ], - "223": [ - 46 - ], - "224": [ - 46, - 128 - ], - "225": [ - 46, - 128 - ], - "229": [ - 47 - ], - "231": [ - 47 - ], - "232": [ - 47 - ], - "239": [ - 240 - ], - "317": [ - 46 - ], - "320": [ - 46 - ], - "321": [ - 46 - ], - "322": [ - 46, - 128 - ], - "323": [ - 46, - 128 - ], - "325": [ - 47 - ], - "326": [ - 47 - ], - "327": [ - 47 - ], - "328": [ - 47 - ], - "334": [ - 240, - 335 - ], - "335": [ - 240 - ], - "339": [ - 340 - ], - "342": [ - 343 - ], - "345": [ - 347 - ], - "346": [ - 347 - ], - "405": [ - 46 - ], - "411": [ - 46 - ], - "412": [ - 46, - 128 - ], - "413": [ - 46, - 128 - ], - "414": [ - 46, - 128 - ], - "415": [ - 46, - 128 - ], - "416": [ - 47 - ], - "417": [ - 47 - ], - "422": [ - 240, - 335 - ], - "424": [ - 240, - 335 - ], - "426": [ - 240 - ], - "478": [ - 46, - 128 - ], - "480": [ - 46, - 128 - ], - "482": [ - 46, - 128 - ], - "486": [ - 47 - ], - "492": [ - 240 - ], - "527": [ - 46, - 128 - ], - "534": [ - 47 - ], - "546": [ - 47 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 40, - "start": 16, - "tree_index": 44 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 55, - "start": 46, - "tree_index": 45 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 194, - "start": 56, - "tree_index": 46 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 359, - "start": 196, - "tree_index": 47 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 390, - "start": 365, - "tree_index": 48 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 453, - "start": 395, - "tree_index": 49 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 484, - "start": 458, - "tree_index": 50 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 517, - "start": 489, - "tree_index": 51 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 553, - "start": 522, - "tree_index": 52 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 578, - "start": 554, - "tree_index": 53 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 605, - "start": 583, - "tree_index": 54 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 812, - "start": 611, - "tree_index": 55 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 880, - "start": 818, - "tree_index": 56 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 922, - "start": 886, - "tree_index": 57 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 933, - "start": 928, - "tree_index": 58 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 944, - "start": 938, - "tree_index": 59 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 962, - "start": 949, - "tree_index": 60 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 972, - "start": 967, - "tree_index": 61 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1002, - "start": 978, - "tree_index": 62 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1032, - "start": 1008, - "tree_index": 63 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1067, - "start": 1037, - "tree_index": 64 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1238, - "start": 1069, - "tree_index": 65 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 1269, - "start": 1240, - "tree_index": 66 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1307, - "start": 1275, - "tree_index": 67 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1321, - "start": 1313, - "tree_index": 68 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1331, - "start": 1326, - "tree_index": 69 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1349, - "start": 1336, - "tree_index": 70 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1364, - "start": 1355, - "tree_index": 71 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1381, - "start": 1369, - "tree_index": 72 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 1398, - "start": 1386, - "tree_index": 73 - }, - { - "classes": [], - "depth": 3, - "end": 40, - "start": 23, - "tree_index": 122 - }, - { - "classes": [], - "depth": 3, - "end": 79, - "start": 69, - "tree_index": 126 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 104, - "start": 89, - "tree_index": 127 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 194, - "start": 105, - "tree_index": 128 - }, - { - "classes": [], - "depth": 3, - "end": 217, - "start": 209, - "tree_index": 130 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 322, - "start": 219, - "tree_index": 131 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 359, - "start": 323, - "tree_index": 132 - }, - { - "classes": [], - "depth": 3, - "end": 390, - "start": 369, - "tree_index": 134 - }, - { - "classes": [], - "depth": 3, - "end": 453, - "start": 404, - "tree_index": 136 - }, - { - "classes": [], - "depth": 3, - "end": 484, - "start": 458, - "tree_index": 137 - }, - { - "classes": [], - "depth": 3, - "end": 517, - "start": 489, - "tree_index": 138 - }, - { - "classes": [], - "depth": 3, - "end": 553, - "start": 522, - "tree_index": 139 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 578, - "start": 574, - "tree_index": 141 - }, - { - "classes": [], - "depth": 3, - "end": 605, - "start": 583, - "tree_index": 142 - }, - { - "classes": [], - "depth": 3, - "end": 812, - "start": 618, - "tree_index": 143 - }, - { - "classes": [], - "depth": 3, - "end": 880, - "start": 825, - "tree_index": 144 - }, - { - "classes": [], - "depth": 3, - "end": 922, - "start": 893, - "tree_index": 145 - }, - { - "classes": [], - "depth": 3, - "end": 962, - "start": 956, - "tree_index": 151 - }, - { - "classes": [], - "depth": 3, - "end": 1002, - "start": 978, - "tree_index": 153 - }, - { - "classes": [], - "depth": 3, - "end": 1032, - "start": 1015, - "tree_index": 154 - }, - { - "classes": [], - "depth": 3, - "end": 1067, - "start": 1044, - "tree_index": 155 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1104, - "start": 1086, - "tree_index": 156 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1238, - "start": 1231, - "tree_index": 160 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 1269, - "start": 1264, - "tree_index": 162 - }, - { - "classes": [], - "depth": 3, - "end": 1307, - "start": 1282, - "tree_index": 163 - }, - { - "classes": [], - "depth": 3, - "end": 1349, - "start": 1343, - "tree_index": 166 - }, - { - "classes": [], - "depth": 3, - "end": 1364, - "start": 1359, - "tree_index": 168 - }, - { - "classes": [], - "depth": 3, - "end": 1381, - "start": 1369, - "tree_index": 169 - }, - { - "classes": [], - "depth": 3, - "end": 1398, - "start": 1386, - "tree_index": 170 - }, - { - "classes": [], - "depth": 4, - "end": 35, - "start": 23, - "tree_index": 213 - }, - { - "classes": [], - "depth": 4, - "end": 74, - "start": 69, - "tree_index": 219 - }, - { - "classes": [], - "depth": 4, - "end": 104, - "start": 89, - "tree_index": 221 - }, - { - "classes": [], - "depth": 4, - "end": 134, - "start": 122, - "tree_index": 223 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 170, - "start": 148, - "tree_index": 224 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 194, - "start": 183, - "tree_index": 225 - }, - { - "classes": [], - "depth": 4, - "end": 214, - "start": 209, - "tree_index": 227 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 267, - "start": 244, - "tree_index": 229 - }, - { - "classes": [], - "depth": 4, - "end": 340, - "start": 334, - "tree_index": 231 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 359, - "start": 354, - "tree_index": 232 - }, - { - "classes": [], - "depth": 4, - "end": 378, - "start": 369, - "tree_index": 234 - }, - { - "classes": [], - "depth": 4, - "end": 390, - "start": 381, - "tree_index": 236 - }, - { - "classes": [], - "depth": 4, - "end": 396, - "start": 395, - "tree_index": 237 - }, - { - "classes": [], - "depth": 4, - "end": 432, - "start": 405, - "tree_index": 239 - }, - { - "classes": [ - "loop" - ], - "depth": 4, - "end": 452, - "start": 433, - "tree_index": 240 - }, - { - "classes": [], - "depth": 4, - "end": 463, - "start": 458, - "tree_index": 241 - }, - { - "classes": [], - "depth": 4, - "end": 483, - "start": 464, - "tree_index": 242 - }, - { - "classes": [], - "depth": 4, - "end": 494, - "start": 489, - "tree_index": 243 - }, - { - "classes": [], - "depth": 4, - "end": 516, - "start": 495, - "tree_index": 244 - }, - { - "classes": [], - "depth": 4, - "end": 527, - "start": 522, - "tree_index": 245 - }, - { - "classes": [], - "depth": 4, - "end": 552, - "start": 528, - "tree_index": 246 - }, - { - "classes": [], - "depth": 4, - "end": 564, - "start": 563, - "tree_index": 247 - }, - { - "classes": [], - "depth": 4, - "end": 588, - "start": 583, - "tree_index": 248 - }, - { - "classes": [], - "depth": 4, - "end": 604, - "start": 589, - "tree_index": 249 - }, - { - "classes": [], - "depth": 4, - "end": 729, - "start": 618, - "tree_index": 250 - }, - { - "classes": [], - "depth": 4, - "end": 812, - "start": 733, - "tree_index": 252 - }, - { - "classes": [], - "depth": 4, - "end": 859, - "start": 825, - "tree_index": 253 - }, - { - "classes": [], - "depth": 4, - "end": 917, - "start": 893, - "tree_index": 256 - }, - { - "classes": [], - "depth": 4, - "end": 957, - "start": 956, - "tree_index": 261 - }, - { - "classes": [], - "depth": 4, - "end": 983, - "start": 978, - "tree_index": 265 - }, - { - "classes": [], - "depth": 4, - "end": 1027, - "start": 1015, - "tree_index": 269 - }, - { - "classes": [], - "depth": 4, - "end": 1057, - "start": 1044, - "tree_index": 272 - }, - { - "classes": [], - "depth": 4, - "end": 1104, - "start": 1092, - "tree_index": 275 - }, - { - "classes": [], - "depth": 4, - "end": 1130, - "start": 1116, - "tree_index": 276 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1149, - "start": 1145, - "tree_index": 277 - }, - { - "classes": [], - "depth": 4, - "end": 1170, - "start": 1161, - "tree_index": 278 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1184, - "start": 1180, - "tree_index": 279 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 1209, - "start": 1205, - "tree_index": 280 - }, - { - "classes": [], - "depth": 4, - "end": 1238, - "start": 1231, - "tree_index": 281 - }, - { - "classes": [], - "depth": 4, - "end": 1302, - "start": 1282, - "tree_index": 282 - }, - { - "classes": [], - "depth": 4, - "end": 1344, - "start": 1343, - "tree_index": 286 - }, - { - "classes": [], - "depth": 4, - "end": 1362, - "start": 1359, - "tree_index": 290 - }, - { - "classes": [], - "depth": 4, - "end": 1378, - "start": 1369, - "tree_index": 291 - }, - { - "classes": [], - "depth": 4, - "end": 1380, - "start": 1379, - "tree_index": 292 - }, - { - "classes": [], - "depth": 4, - "end": 1395, - "start": 1386, - "tree_index": 293 - }, - { - "classes": [], - "depth": 4, - "end": 1397, - "start": 1396, - "tree_index": 294 - }, - { - "classes": [], - "depth": 5, - "end": 32, - "start": 23, - "tree_index": 314 - }, - { - "classes": [], - "depth": 5, - "end": 100, - "start": 89, - "tree_index": 317 - }, - { - "classes": [], - "depth": 5, - "end": 127, - "start": 122, - "tree_index": 320 - }, - { - "classes": [], - "depth": 5, - "end": 133, - "start": 128, - "tree_index": 321 - }, - { - "classes": [], - "depth": 5, - "end": 170, - "start": 148, - "tree_index": 322 - }, - { - "classes": [], - "depth": 5, - "end": 194, - "start": 183, - "tree_index": 323 - }, - { - "classes": [], - "depth": 5, - "end": 267, - "start": 244, - "tree_index": 325 - }, - { - "classes": [], - "depth": 5, - "end": 300, - "start": 283, - "tree_index": 326 - }, - { - "classes": [ - "stmt" - ], - "depth": 5, - "end": 322, - "start": 314, - "tree_index": 327 - }, - { - "classes": [], - "depth": 5, - "end": 335, - "start": 334, - "tree_index": 328 - }, - { - "classes": [], - "depth": 5, - "end": 376, - "start": 369, - "tree_index": 331 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 381, - "tree_index": 332 - }, - { - "classes": [], - "depth": 5, - "end": 411, - "start": 406, - "tree_index": 334 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 431, - "start": 412, - "tree_index": 335 - }, - { - "classes": [], - "depth": 5, - "end": 452, - "start": 442, - "tree_index": 337 - }, - { - "classes": [], - "depth": 5, - "end": 465, - "start": 464, - "tree_index": 339 - }, - { - "classes": [], - "depth": 5, - "end": 497, - "start": 496, - "tree_index": 342 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 515, - "start": 498, - "tree_index": 343 - }, - { - "classes": [], - "depth": 5, - "end": 530, - "start": 529, - "tree_index": 345 - }, - { - "classes": [], - "depth": 5, - "end": 533, - "start": 532, - "tree_index": 346 - }, - { - "classes": [ - "loop" - ], - "depth": 5, - "end": 551, - "start": 534, - "tree_index": 347 - }, - { - "classes": [], - "depth": 5, - "end": 590, - "start": 589, - "tree_index": 350 - }, - { - "classes": [], - "depth": 5, - "end": 604, - "start": 593, - "tree_index": 352 - }, - { - "classes": [], - "depth": 5, - "end": 630, - "start": 618, - "tree_index": 353 - }, - { - "classes": [], - "depth": 5, - "end": 657, - "start": 640, - "tree_index": 354 - }, - { - "classes": [], - "depth": 5, - "end": 751, - "start": 734, - "tree_index": 358 - }, - { - "classes": [], - "depth": 5, - "end": 811, - "start": 782, - "tree_index": 360 - }, - { - "classes": [], - "depth": 5, - "end": 837, - "start": 825, - "tree_index": 362 - }, - { - "classes": [], - "depth": 5, - "end": 845, - "start": 838, - "tree_index": 363 - }, - { - "classes": [], - "depth": 5, - "end": 897, - "start": 893, - "tree_index": 369 - }, - { - "classes": [], - "depth": 5, - "end": 916, - "start": 898, - "tree_index": 370 - }, - { - "classes": [], - "depth": 5, - "end": 1102, - "start": 1092, - "tree_index": 382 - }, - { - "classes": [], - "depth": 5, - "end": 1236, - "start": 1231, - "tree_index": 385 - }, - { - "classes": [], - "depth": 5, - "end": 1298, - "start": 1283, - "tree_index": 386 - }, - { - "classes": [], - "depth": 6, - "end": 93, - "start": 89, - "tree_index": 405 - }, - { - "classes": [], - "depth": 6, - "end": 133, - "start": 132, - "tree_index": 411 - }, - { - "classes": [], - "depth": 6, - "end": 163, - "start": 148, - "tree_index": 412 - }, - { - "classes": [], - "depth": 6, - "end": 169, - "start": 164, - "tree_index": 413 - }, - { - "classes": [], - "depth": 6, - "end": 188, - "start": 183, - "tree_index": 414 - }, - { - "classes": [], - "depth": 6, - "end": 193, - "start": 189, - "tree_index": 415 - }, - { - "classes": [], - "depth": 6, - "end": 249, - "start": 244, - "tree_index": 416 - }, - { - "classes": [], - "depth": 6, - "end": 266, - "start": 250, - "tree_index": 417 - }, - { - "classes": [], - "depth": 6, - "end": 407, - "start": 406, - "tree_index": 422 - }, - { - "classes": [], - "depth": 6, - "end": 411, - "start": 410, - "tree_index": 424 - }, - { - "classes": [], - "depth": 6, - "end": 431, - "start": 421, - "tree_index": 426 - }, - { - "classes": [], - "depth": 6, - "end": 447, - "start": 442, - "tree_index": 428 - }, - { - "classes": [], - "depth": 6, - "end": 483, - "start": 475, - "tree_index": 432 - }, - { - "classes": [], - "depth": 6, - "end": 515, - "start": 507, - "tree_index": 435 - }, - { - "classes": [], - "depth": 6, - "end": 551, - "start": 543, - "tree_index": 439 - }, - { - "classes": [], - "depth": 6, - "end": 602, - "start": 593, - "tree_index": 441 - }, - { - "classes": [], - "depth": 6, - "end": 644, - "start": 640, - "tree_index": 443 - }, - { - "classes": [], - "depth": 6, - "end": 656, - "start": 645, - "tree_index": 444 - }, - { - "classes": [], - "depth": 6, - "end": 738, - "start": 734, - "tree_index": 447 - }, - { - "classes": [], - "depth": 6, - "end": 750, - "start": 739, - "tree_index": 448 - }, - { - "classes": [], - "depth": 6, - "end": 786, - "start": 782, - "tree_index": 449 - }, - { - "classes": [], - "depth": 6, - "end": 1298, - "start": 1293, - "tree_index": 474 - }, - { - "classes": [], - "depth": 7, - "end": 156, - "start": 148, - "tree_index": 478 - }, - { - "classes": [], - "depth": 7, - "end": 165, - "start": 164, - "tree_index": 480 - }, - { - "classes": [], - "depth": 7, - "end": 169, - "start": 168, - "tree_index": 482 - }, - { - "classes": [], - "depth": 7, - "end": 261, - "start": 250, - "tree_index": 486 - }, - { - "classes": [], - "depth": 7, - "end": 426, - "start": 421, - "tree_index": 492 - }, - { - "classes": [], - "depth": 7, - "end": 480, - "start": 475, - "tree_index": 496 - }, - { - "classes": [], - "depth": 7, - "end": 512, - "start": 507, - "tree_index": 499 - }, - { - "classes": [], - "depth": 7, - "end": 548, - "start": 543, - "tree_index": 502 - }, - { - "classes": [], - "depth": 7, - "end": 650, - "start": 645, - "tree_index": 506 - }, - { - "classes": [], - "depth": 7, - "end": 744, - "start": 739, - "tree_index": 511 - }, - { - "classes": [], - "depth": 7, - "end": 1294, - "start": 1293, - "tree_index": 524 - }, - { - "classes": [], - "depth": 8, - "end": 152, - "start": 148, - "tree_index": 527 - }, - { - "classes": [], - "depth": 8, - "end": 260, - "start": 255, - "tree_index": 534 - }, - { - "classes": [], - "depth": 9, - "end": 256, - "start": 255, - "tree_index": 546 - } - ] - }, - "html_body": "@eye\ndef main():\n assert factorial(3) == 6\n\n vals = []\n for i in range(100):\n vals.append([])\n for j in range(2 * i):\n vals[-1].append(i + j)\n dummy(vals)\n\n for i in range(6):\n try:\n dummy(1 / (i % 2) + 10)\n except ZeroDivisionError:\n continue\n if i == 3:\n break\n\n c = MyClass() + MyClass()\n c.list = [[x + y for x in range(100)] \n for y in range(100)]\n dummy(n for n in range(4))\n dummy({n for n in range(4)})\n dummy({n: n for n in range(1)})\n with c:\n pass\n dummy(c + SlotClass())\n\n assert complex_args(\n list(range(1000)),\n "hello",\n key2=8,\n kwarg1={'key': 'value'}\n ) == [list(range(1000)),\n 'hello',\n dict(kwarg1={'key': 'value'})]\n\n assert complex_args(*[1, 2], **{'k': 23}) == [1, 2, {'k': 23}]\n\n assert eval('%s + %s' % (1, 2)) == 3\n\n x = 1\n x += 5\n assert x == 6\n del x\n\n dummy(True, False, None)\n\n assert [1, 2, 3][1] == 2\n assert (1, 2, 3)[:2] == (1, 2)\n\n try:\n raise ValueError()\n except AssertionError as e:\n pass\n except TypeError:\n pass\n except:\n pass\n finally:\n dummy()\n\n while True:\n break\n\n assert (lambda x: x * 2)(4) == 8\n\n global G\n G = 4\n assert G == 4\n\n g = gen()\n use_gen_1(g)\n use_gen_2(g)", - "lineno": 63, - "name": "main" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "3" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "3", - "int", - {} - ], - "177": [ - "3", - "int", - {} - ], - "179": [ - "2", - "int", - { - "inner_calls": [ - "test_id_3" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "299": [ - "2", - "int", - {} - ], - "395": [ - "3", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "6", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "6", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "2" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "2", - "int", - {} - ], - "177": [ - "2", - "int", - {} - ], - "179": [ - "1", - "int", - { - "inner_calls": [ - "test_id_4" - ] - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "298": [ - "", - "function", - {}, - [ - "__wrapped__", - [ - "", - "function", - {} - ] - ] - ], - "299": [ - "1", - "int", - {} - ], - "395": [ - "2", - "int", - {} - ], - "78": [ - "False", - "bool", - {} - ], - "80": [ - "2", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "2", - "traceback": null - }, - { - "arguments": [ - [ - "n", - "1" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "173": [ - "1", - "int", - {} - ], - "19": [ - "", - -2, - {} - ], - "78": [ - "True", - "bool", - {} - ], - "79": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "int", - "list", - "set", - "str", - "tuple" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 49, - "start": 18, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 81, - "start": 54, - "tree_index": 20 - }, - { - "classes": [], - "depth": 3, - "end": 31, - "start": 25, - "tree_index": 78 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 41, - "tree_index": 79 - }, - { - "classes": [], - "depth": 3, - "end": 81, - "start": 61, - "tree_index": 80 - }, - { - "classes": [], - "depth": 4, - "end": 26, - "start": 25, - "tree_index": 173 - }, - { - "classes": [], - "depth": 4, - "end": 62, - "start": 61, - "tree_index": 177 - }, - { - "classes": [], - "depth": 4, - "end": 81, - "start": 65, - "tree_index": 179 - }, - { - "classes": [], - "depth": 5, - "end": 74, - "start": 65, - "tree_index": 298 - }, - { - "classes": [], - "depth": 5, - "end": 80, - "start": 75, - "tree_index": 299 - }, - { - "classes": [], - "depth": 6, - "end": 76, - "start": 75, - "tree_index": 395 - } - ] - }, - "html_body": "@eye\ndef factorial(n):\n if n <= 1:\n return 1\n return n * factorial(n - 1)", - "lineno": 8, - "name": "factorial" - }, - "return_value": "1", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ], - "204": [ - "", - "MyClass", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "getset_descriptor", - "int", - "list", - "method", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 204 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "117": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "method", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 33, - "start": 29, - "tree_index": 117 - } - ] - }, - "html_body": " @eye\n def __enter__(self):\n pass", - "lineno": 54, - "name": "MyClass.__enter__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "exc_type", - "None" - ], - [ - "exc_val", - "None" - ], - [ - "exc_tb", - "None" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "120": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "method", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 59, - "start": 55, - "tree_index": 120 - } - ] - }, - "html_body": " @eye\n def __exit__(self, exc_type, exc_val, exc_tb):\n pass", - "lineno": 58, - "name": "MyClass.__exit__" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ], - [ - "other", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "114": [ - "", - -2, - {} - ], - "204": [ - "", - "SlotClass", - {}, - [ - "slot1", - [ - "3", - "int", - {} - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "method", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 46, - "start": 34, - "tree_index": 114 - }, - { - "classes": [], - "depth": 4, - "end": 46, - "start": 41, - "tree_index": 204 - } - ] - }, - "html_body": " @eye\n def __add__(self, other):\n return other", - "lineno": 50, - "name": "MyClass.__add__" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "[0, 1, 2, ..., 997, 998, 999]" - ], - [ - "pos2", - "'hello'" - ], - [ - "key1", - "3" - ], - [ - "key2", - "8" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'kwarg1': {'key': 'value'}}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "186": [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "3", - [ - "3", - "int", - {} - ] - ], - [ - "4", - [ - "4", - "int", - {} - ] - ], - [ - "995", - [ - "995", - "int", - {} - ] - ], - [ - "996", - [ - "996", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ], - "187": [ - "'hello'", - "str", - { - "len": 5 - } - ], - "188": [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "96": [ - "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[0, 1, 2, ..., 997, 998, 999]", - "list", - { - "len": 1000 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "1", - "int", - {} - ] - ], - [ - "2", - [ - "2", - "int", - {} - ] - ], - [ - "997", - [ - "997", - "int", - {} - ] - ], - [ - "998", - [ - "998", - "int", - {} - ] - ], - [ - "999", - [ - "999", - "int", - {} - ] - ] - ] - ], - [ - "1", - [ - "'hello'", - "str", - { - "len": 5 - } - ] - ], - [ - "2", - [ - "{'kwarg1': {'key': 'value'}}", - "dict", - { - "len": 1 - }, - [ - "'kwarg1'", - [ - "{'key': 'value'}", - "dict", - { - "len": 1 - }, - [ - "'key'", - [ - "'value'", - "str", - { - "len": 5 - } - ] - ] - ] - ] - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "method", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 96 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 187 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 188 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[[0, 1, 2, ..., 997, 998, 999], 'hello', {'kwarg1': {'key': 'value'}}]", - "traceback": null - }, - { - "arguments": [ - [ - "pos1", - "1" - ], - [ - "pos2", - "2" - ], - [ - "key1", - "3" - ], - [ - "key2", - "4" - ], - [ - "args", - "()" - ], - [ - "kwargs", - "{'k': 23}" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "186": [ - "1", - "int", - {} - ], - "187": [ - "2", - "int", - {} - ], - "188": [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ], - "28": [ - "", - -2, - {} - ], - "96": [ - "[1, 2, {'k': 23}]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "1", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ], - [ - "2", - [ - "{'k': 23}", - "dict", - { - "len": 1 - }, - [ - "'k'", - [ - "23", - "int", - {} - ] - ] - ] - ] - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "list", - "member_descriptor", - "method", - "range", - "set", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 94, - "start": 67, - "tree_index": 28 - }, - { - "classes": [], - "depth": 3, - "end": 94, - "start": 74, - "tree_index": 96 - }, - { - "classes": [], - "depth": 4, - "end": 79, - "start": 75, - "tree_index": 186 - }, - { - "classes": [], - "depth": 4, - "end": 85, - "start": 81, - "tree_index": 187 - }, - { - "classes": [], - "depth": 4, - "end": 93, - "start": 87, - "tree_index": 188 - } - ] - }, - "html_body": "@eye\ndef complex_args(pos1, pos2, key1=3, key2=4, *args, **kwargs):\n return [pos1, pos2, kwargs]", - "lineno": 26, - "name": "complex_args" - }, - "return_value": "[1, 2, {'k': 23}]", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "34": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "104": [ - "", - "islice", - {} - ], - "105": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "195": [ - "", - "type", - {}, - [ - "__doc__", - [ - "'Make an itera...rd line).\\n '", - "str", - { - "len": 721 - } - ] - ], - [ - "__iter__", - [ - "", - "function", - {} - ] - ], - [ - "__new__", - [ - "", - "staticmethod", - {} - ] - ], - [ - "__next__", - [ - "", - "function", - {} - ] - ], - [ - "__reduce__", - [ - "", - "function", - {} - ] - ], - [ - "__setstate__", - [ - "", - "function", - {} - ] - ] - ], - "196": [ - "", - "generator", - {} - ], - "198": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "309": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "310": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "34": [ - "", - -2, - { - "inner_calls": [ - "test_id_12" - ] - } - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method", - "range", - "set", - "staticmethod", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 34 - } - ], - "node_loops": { - "105": [ - 34 - ], - "198": [ - 34 - ], - "309": [ - 34 - ], - "310": [ - 34 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 61, - "start": 18, - "tree_index": 34 - }, - { - "classes": [], - "depth": 3, - "end": 43, - "start": 31, - "tree_index": 104 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 61, - "start": 53, - "tree_index": 105 - }, - { - "classes": [], - "depth": 4, - "end": 37, - "start": 31, - "tree_index": 195 - }, - { - "classes": [], - "depth": 4, - "end": 39, - "start": 38, - "tree_index": 196 - }, - { - "classes": [], - "depth": 4, - "end": 61, - "start": 53, - "tree_index": 198 - }, - { - "classes": [], - "depth": 5, - "end": 58, - "start": 53, - "tree_index": 309 - }, - { - "classes": [], - "depth": 5, - "end": 60, - "start": 59, - "tree_index": 310 - } - ] - }, - "html_body": "@eye\ndef use_gen_1(g):\n for x in islice(g, 3):\n dummy(x)", - "lineno": 37, - "name": "use_gen_1" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "31": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - }, - { - "index": 3, - "loops": {} - }, - { - "index": 4, - "loops": {} - }, - { - "index": 5, - "loops": {} - } - ] - }, - "node_values": { - "100": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ], - "5": [ - "", - -2, - {} - ] - }, - "193": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ], - "3": [ - "None", - "NoneType", - {} - ], - "4": [ - "None", - "NoneType", - {} - ], - "5": [ - "None", - "NoneType", - {} - ] - }, - "306": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ], - "3": [ - "3", - "int", - {} - ], - "4": [ - "4", - "int", - {} - ], - "5": [ - "5", - "int", - {} - ] - }, - "31": [ - "", - -2, - {} - ], - "99": [ - "range(0, 6)", - "range", - { - "len": 6 - } - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method", - "range", - "set", - "staticmethod", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 20, - "start": 19, - "tree_index": 31 - } - ], - "node_loops": { - "100": [ - 31 - ], - "193": [ - 31 - ], - "306": [ - 31 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 49, - "start": 11, - "tree_index": 31 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 24, - "tree_index": 99 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 49, - "start": 42, - "tree_index": 100 - }, - { - "classes": [], - "depth": 4, - "end": 29, - "start": 24, - "tree_index": 191 - }, - { - "classes": [], - "depth": 4, - "end": 49, - "start": 42, - "tree_index": 193 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 306 - } - ] - }, - "html_body": "@eye\ndef gen():\n for i in range(6):\n yield i", - "lineno": 31, - "name": "gen" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "g", - "" - ] - ], - "data": { - "loop_iterations": { - "37": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "109": [ - "", - "generator", - {} - ], - "110": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "201": { - "0": [ - "None", - "NoneType", - {} - ], - "1": [ - "None", - "NoneType", - {} - ], - "2": [ - "None", - "NoneType", - {} - ] - }, - "311": { - "0": [ - "", - "function", - {} - ], - "1": [ - "", - "function", - {} - ], - "2": [ - "", - "function", - {} - ] - }, - "312": { - "0": [ - "3", - "int", - {} - ], - "1": [ - "4", - "int", - {} - ], - "2": [ - "5", - "int", - {} - ] - }, - "37": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method", - "range", - "set", - "staticmethod", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 27, - "start": 26, - "tree_index": 37 - } - ], - "node_loops": { - "110": [ - 37 - ], - "201": [ - 37 - ], - "311": [ - 37 - ], - "312": [ - 37 - ] - }, - "node_ranges": [ - { - "classes": [ - "loop", - "stmt" - ], - "depth": 2, - "end": 50, - "start": 18, - "tree_index": 37 - }, - { - "classes": [], - "depth": 3, - "end": 32, - "start": 31, - "tree_index": 109 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 50, - "start": 42, - "tree_index": 110 - }, - { - "classes": [], - "depth": 4, - "end": 50, - "start": 42, - "tree_index": 201 - }, - { - "classes": [], - "depth": 5, - "end": 47, - "start": 42, - "tree_index": 311 - }, - { - "classes": [], - "depth": 5, - "end": 49, - "start": 48, - "tree_index": 312 - } - ] - }, - "html_body": "@eye\ndef use_gen_2(g):\n for y in g:\n dummy(y)", - "lineno": 43, - "name": "use_gen_2" - }, - "return_value": "None", - "traceback": null - } -] \ No newline at end of file diff --git a/tests/golden-files/pypy3.5/traced.json b/tests/golden-files/pypy3.5/traced.json deleted file mode 100644 index fc11b11..0000000 --- a/tests/golden-files/pypy3.5/traced.json +++ /dev/null @@ -1,1959 +0,0 @@ -[ - { - "arguments": [], - "data": { - "loop_iterations": {}, - "node_values": { - "1": [ - "", - -2, - {} - ], - "13": [ - "None", - "NoneType", - { - "inner_calls": [ - "test_id_15" - ] - } - ], - "2": [ - "", - -2, - {} - ], - "27": [ - "", - "function", - {} - ], - "3": [ - "", - -2, - {} - ], - "4": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "range", - "set", - "staticmethod", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "node_loops": { - "103": [ - 104 - ], - "105": [ - 82 - ], - "117": [ - 100, - 118 - ], - "118": [ - 100 - ], - "121": [ - 104 - ], - "123": [ - 104 - ], - "127": [ - 82 - ], - "136": [ - 100, - 118 - ], - "140": [ - 100 - ], - "150": [ - 82 - ], - "152": [ - 82 - ], - "157": [ - 100 - ], - "158": [ - 100 - ], - "34": [ - 19 - ], - "53": [ - 19 - ], - "72": [ - 19 - ], - "73": [ - 19 - ], - "81": [ - 82 - ], - "95": [ - 19 - ], - "97": [ - 19 - ], - "99": [ - 100 - ] - } - }, - "html_body": "import birdseye.trace_module_deep\n\n\ndef deco(f):\n return f\n\n\ndef m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()\n\n\nm()", - "lineno": 1, - "name": "$$__FILE__$$" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [], - "data": { - "loop_iterations": { - "100": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": { - "118": [ - { - "index": 0, - "loops": {} - } - ] - } - }, - { - "index": 2, - "loops": { - "118": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - } - ] - } - } - ], - "19": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ], - "82": [ - { - "index": 0, - "loops": {} - }, - { - "index": 1, - "loops": {} - }, - { - "index": 2, - "loops": {} - } - ] - }, - "node_values": { - "10": [ - "", - -2, - {} - ], - "100": [ - "", - -2, - {} - ], - "105": { - "0": [ - ".A. at 0xABC>", - "function", - {} - ], - "1": [ - ".A. at 0xABC>", - "function", - {} - ], - "2": [ - ".A. at 0xABC>", - "function", - {} - ] - }, - "108": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "11": [ - "", - -2, - {} - ], - "113": [ - "", - "m..A", - {} - ], - "117": { - "1": { - "0": [ - "0", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "2", - "int", - {} - ] - } - }, - "118": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "12": [ - "", - -2, - {} - ], - "120": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "135": [ - ".A'>", - "type", - {}, - [ - "B", - [ - ".A.B'>", - "type", - {}, - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.traced'", - "str", - { - "len": 19 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ] - ] - ], - [ - "__dict__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "__doc__", - [ - "None", - "NoneType", - {} - ] - ], - [ - "__module__", - [ - "'test_scripts.traced'", - "str", - { - "len": 19 - } - ] - ], - [ - "__weakref__", - [ - "", - "getset_descriptor", - {} - ] - ], - [ - "bar", - [ - ".A.bar at 0xABC>", - "function", - {} - ] - ], - [ - "foo", - [ - ".A.foo at 0xABC>", - "function", - {} - ] - ], - [ - "i", - [ - "2", - "int", - {} - ] - ] - ], - "136": { - "1": { - "0": [ - "0", - "int", - {} - ] - }, - "2": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ] - } - }, - "140": { - "0": [ - "range(0, 0)", - "range", - { - "len": 0 - } - ], - "1": [ - "range(0, 1)", - "range", - { - "len": 1 - } - ], - "2": [ - "range(0, 2)", - "range", - { - "len": 2 - } - ] - }, - "158": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "18": [ - "'9'", - "str", - { - "len": 1 - } - ], - "19": [ - "", - -2, - {} - ], - "20": [ - "", - -2, - {} - ], - "21": [ - "", - -2, - {} - ], - "22": [ - "", - -2, - {} - ], - "23": [ - "", - -2, - {} - ], - "24": [ - "", - -2, - { - "inner_calls": [ - "test_id_16" - ] - } - ], - "25": [ - "", - -2, - {} - ], - "26": [ - "4", - "int", - { - "inner_calls": [ - "test_id_18" - ] - } - ], - "31": [ - "9", - "int", - {} - ], - "33": [ - "range(0, 3)", - "range", - { - "len": 3 - } - ], - "34": { - "0": [ - "", - -2, - {} - ], - "1": [ - "", - -2, - {} - ], - "2": [ - "", - -2, - {} - ] - }, - "35": [ - "", - -2, - {} - ], - "36": [ - "9", - "int", - {} - ], - "37": [ - "[0, 8, 16]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "8", - "int", - {} - ] - ], - [ - "2", - [ - "16", - "int", - {} - ] - ] - ], - "38": [ - "'{7, 8, 9}'", - "str", - { - "len": 9 - } - ], - "43": [ - "", - "function", - {} - ], - "46": [ - ".A.bar of >", - "method", - {} - ], - "53": { - "0": [ - "'0'", - "str", - { - "len": 1 - } - ], - "1": [ - "'1'", - "str", - { - "len": 1 - } - ], - "2": [ - "'4'", - "str", - { - "len": 1 - } - ] - }, - "54": [ - "'[[], [0], [0, 2]]'", - "str", - { - "len": 17 - } - ], - "55": [ - ".A. at 0xABC>", - "function", - {} - ], - "57": [ - ".A. at 0xABC>", - "function", - {} - ], - "60": [ - "{7, 8, 9}", - "set", - { - "len": 3 - }, - [ - "<0>", - [ - "7", - "int", - {} - ] - ], - [ - "<1>", - [ - "8", - "int", - {} - ] - ], - [ - "<2>", - [ - "9", - "int", - {} - ] - ] - ], - "69": [ - "", - "m..A", - { - "inner_calls": [ - "test_id_17" - ] - } - ], - "73": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "4", - "int", - {} - ] - }, - "75": [ - "[[], [0], [0, 2]]", - "list", - { - "len": 3 - }, - [ - "0", - [ - "[]", - "list", - { - "len": 0 - } - ] - ], - [ - "1", - [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ] - ], - [ - "2", - [ - "[0, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - ] - ], - "81": { - "0": [ - "7", - "int", - {} - ], - "1": [ - "8", - "int", - {} - ], - "2": [ - "9", - "int", - {} - ] - }, - "82": [ - "", - -2, - {} - ], - "9": [ - "", - -2, - {} - ], - "93": [ - ".A.foo of >", - "method", - {} - ], - "95": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "97": { - "0": [ - "0", - "int", - {} - ], - "1": [ - "1", - "int", - {} - ], - "2": [ - "2", - "int", - {} - ] - }, - "99": { - "0": [ - "[]", - "list", - { - "len": 0 - } - ], - "1": [ - "[0]", - "list", - { - "len": 1 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ] - ], - "2": [ - "[0, 2]", - "list", - { - "len": 2 - }, - [ - "0", - [ - "0", - "int", - {} - ] - ], - [ - "1", - [ - "2", - "int", - {} - ] - ] - ] - } - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "range", - "set", - "staticmethod", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [ - { - "end": 61, - "start": 60, - "tree_index": 19 - }, - { - "end": 314, - "start": 313, - "tree_index": 82 - }, - { - "end": 181, - "start": 180, - "tree_index": 100 - }, - { - "end": 257, - "start": 256, - "tree_index": 104 - }, - { - "end": 145, - "start": 144, - "tree_index": 118 - } - ], - "node_loops": { - "103": [ - 104 - ], - "105": [ - 82 - ], - "117": [ - 100, - 118 - ], - "118": [ - 100 - ], - "121": [ - 104 - ], - "123": [ - 104 - ], - "127": [ - 82 - ], - "136": [ - 100, - 118 - ], - "140": [ - 100 - ], - "150": [ - 82 - ], - "152": [ - 82 - ], - "157": [ - 100 - ], - "158": [ - 100 - ], - "34": [ - 19 - ], - "53": [ - 19 - ], - "72": [ - 19 - ], - "73": [ - 19 - ], - "81": [ - 82 - ], - "95": [ - 19 - ], - "97": [ - 19 - ], - "99": [ - 100 - ] - }, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 1, - "end": 509, - "start": 0, - "tree_index": 3 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 20, - "start": 13, - "tree_index": 9 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 33, - "start": 25, - "tree_index": 10 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 488, - "start": 35, - "tree_index": 11 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 509, - "start": 494, - "tree_index": 12 - }, - { - "classes": [], - "depth": 3, - "end": 33, - "start": 25, - "tree_index": 18 - }, - { - "classes": [ - "loop", - "stmt" - ], - "depth": 3, - "end": 97, - "start": 48, - "tree_index": 19 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 195, - "start": 99, - "tree_index": 20 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 225, - "start": 205, - "tree_index": 21 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 274, - "start": 234, - "tree_index": 22 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 328, - "start": 283, - "tree_index": 23 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 439, - "start": 330, - "tree_index": 24 - }, - { - "classes": [ - "stmt" - ], - "depth": 3, - "end": 488, - "start": 441, - "tree_index": 25 - }, - { - "classes": [], - "depth": 3, - "end": 509, - "start": 494, - "tree_index": 26 - }, - { - "classes": [], - "depth": 4, - "end": 28, - "start": 25, - "tree_index": 30 - }, - { - "classes": [], - "depth": 4, - "end": 32, - "start": 29, - "tree_index": 31 - }, - { - "classes": [], - "depth": 4, - "end": 73, - "start": 65, - "tree_index": 33 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 97, - "start": 87, - "tree_index": 34 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 195, - "start": 128, - "tree_index": 35 - }, - { - "classes": [], - "depth": 4, - "end": 225, - "start": 205, - "tree_index": 36 - }, - { - "classes": [], - "depth": 4, - "end": 274, - "start": 234, - "tree_index": 37 - }, - { - "classes": [], - "depth": 4, - "end": 328, - "start": 283, - "tree_index": 38 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 388, - "start": 379, - "tree_index": 40 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 415, - "start": 401, - "tree_index": 41 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 439, - "start": 428, - "tree_index": 42 - }, - { - "classes": [], - "depth": 4, - "end": 343, - "start": 339, - "tree_index": 43 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 488, - "start": 476, - "tree_index": 45 - }, - { - "classes": [], - "depth": 4, - "end": 507, - "start": 494, - "tree_index": 46 - }, - { - "classes": [], - "depth": 5, - "end": 70, - "start": 65, - "tree_index": 51 - }, - { - "classes": [], - "depth": 5, - "end": 97, - "start": 87, - "tree_index": 53 - }, - { - "classes": [], - "depth": 5, - "end": 195, - "start": 128, - "tree_index": 54 - }, - { - "classes": [], - "depth": 5, - "end": 218, - "start": 206, - "tree_index": 55 - }, - { - "classes": [], - "depth": 5, - "end": 270, - "start": 235, - "tree_index": 57 - }, - { - "classes": [], - "depth": 5, - "end": 286, - "start": 283, - "tree_index": 59 - }, - { - "classes": [], - "depth": 5, - "end": 327, - "start": 287, - "tree_index": 60 - }, - { - "classes": [], - "depth": 5, - "end": 388, - "start": 383, - "tree_index": 63 - }, - { - "classes": [], - "depth": 5, - "end": 415, - "start": 401, - "tree_index": 64 - }, - { - "classes": [], - "depth": 5, - "end": 439, - "start": 435, - "tree_index": 65 - }, - { - "classes": [], - "depth": 5, - "end": 488, - "start": 483, - "tree_index": 68 - }, - { - "classes": [], - "depth": 5, - "end": 503, - "start": 494, - "tree_index": 69 - }, - { - "classes": [], - "depth": 6, - "end": 90, - "start": 87, - "tree_index": 72 - }, - { - "classes": [], - "depth": 6, - "end": 96, - "start": 91, - "tree_index": 73 - }, - { - "classes": [], - "depth": 6, - "end": 131, - "start": 128, - "tree_index": 74 - }, - { - "classes": [], - "depth": 6, - "end": 194, - "start": 132, - "tree_index": 75 - }, - { - "classes": [], - "depth": 6, - "end": 270, - "start": 245, - "tree_index": 79 - }, - { - "classes": [], - "depth": 6, - "end": 308, - "start": 288, - "tree_index": 81 - }, - { - "classes": [ - "loop" - ], - "depth": 6, - "end": 326, - "start": 309, - "tree_index": 82 - }, - { - "classes": [], - "depth": 6, - "end": 404, - "start": 401, - "tree_index": 87 - }, - { - "classes": [], - "depth": 6, - "end": 414, - "start": 405, - "tree_index": 88 - }, - { - "classes": [], - "depth": 6, - "end": 501, - "start": 494, - "tree_index": 93 - }, - { - "classes": [], - "depth": 7, - "end": 92, - "start": 91, - "tree_index": 95 - }, - { - "classes": [], - "depth": 7, - "end": 96, - "start": 95, - "tree_index": 97 - }, - { - "classes": [], - "depth": 7, - "end": 158, - "start": 133, - "tree_index": 99 - }, - { - "classes": [ - "loop" - ], - "depth": 7, - "end": 193, - "start": 176, - "tree_index": 100 - }, - { - "classes": [], - "depth": 7, - "end": 251, - "start": 246, - "tree_index": 103 - }, - { - "classes": [ - "loop" - ], - "depth": 7, - "end": 269, - "start": 252, - "tree_index": 104 - }, - { - "classes": [], - "depth": 7, - "end": 304, - "start": 289, - "tree_index": 105 - }, - { - "classes": [], - "depth": 7, - "end": 326, - "start": 318, - "tree_index": 108 - }, - { - "classes": [], - "depth": 7, - "end": 410, - "start": 405, - "tree_index": 110 - }, - { - "classes": [], - "depth": 7, - "end": 414, - "start": 413, - "tree_index": 112 - }, - { - "classes": [], - "depth": 7, - "end": 497, - "start": 494, - "tree_index": 113 - }, - { - "classes": [], - "depth": 8, - "end": 139, - "start": 134, - "tree_index": 117 - }, - { - "classes": [ - "loop" - ], - "depth": 8, - "end": 157, - "start": 140, - "tree_index": 118 - }, - { - "classes": [], - "depth": 8, - "end": 193, - "start": 185, - "tree_index": 120 - }, - { - "classes": [], - "depth": 8, - "end": 247, - "start": 246, - "tree_index": 121 - }, - { - "classes": [], - "depth": 8, - "end": 251, - "start": 250, - "tree_index": 123 - }, - { - "classes": [], - "depth": 8, - "end": 269, - "start": 261, - "tree_index": 125 - }, - { - "classes": [], - "depth": 8, - "end": 304, - "start": 299, - "tree_index": 127 - }, - { - "classes": [], - "depth": 8, - "end": 323, - "start": 318, - "tree_index": 129 - }, - { - "classes": [], - "depth": 8, - "end": 495, - "start": 494, - "tree_index": 135 - }, - { - "classes": [], - "depth": 9, - "end": 135, - "start": 134, - "tree_index": 136 - }, - { - "classes": [], - "depth": 9, - "end": 157, - "start": 149, - "tree_index": 140 - }, - { - "classes": [], - "depth": 9, - "end": 190, - "start": 185, - "tree_index": 142 - }, - { - "classes": [], - "depth": 9, - "end": 266, - "start": 261, - "tree_index": 147 - }, - { - "classes": [], - "depth": 9, - "end": 300, - "start": 299, - "tree_index": 150 - }, - { - "classes": [], - "depth": 9, - "end": 304, - "start": 303, - "tree_index": 152 - }, - { - "classes": [], - "depth": 10, - "end": 154, - "start": 149, - "tree_index": 157 - }, - { - "classes": [], - "depth": 10, - "end": 156, - "start": 155, - "tree_index": 158 - } - ] - }, - "html_body": "def m():\n qwe = 9\n str(qwe)\n\n class A:\n for i in range(3):\n str(i * i)\n\n class B:\n str([[i * 2 for i in range(j)]\n for j in range(3)])\n\n (lambda *_: 9)(None)\n (lambda x: [i * x for i in range(3)])(8)\n str({(lambda x: i + x)(7) for i in range(3)})\n\n @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self\n\n def bar(self):\n return 1 + 3\n\n A().foo().bar()", - "lineno": 8, - "name": "m" - }, - "return_value": "None", - "traceback": null - }, - { - "arguments": [ - [ - "f", - ".A.foo at 0xABC>" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "15": [ - ".A.foo at 0xABC>", - "function", - {} - ], - "7": [ - "", - -2, - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "member_descriptor", - "method", - "range", - "set", - "staticmethod", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 1, - "end": 25, - "start": 0, - "tree_index": 2 - }, - { - "classes": [ - "stmt" - ], - "depth": 2, - "end": 25, - "start": 17, - "tree_index": 7 - }, - { - "classes": [], - "depth": 3, - "end": 25, - "start": 24, - "tree_index": 15 - } - ] - }, - "html_body": "def deco(f):\n return f", - "lineno": 4, - "name": "deco" - }, - "return_value": ".A.foo at 0xABC>", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "110": [ - "3", - "int", - {} - ], - "112": [ - "0", - "int", - {} - ], - "40": [ - "", - -2, - {} - ], - "41": [ - "", - -2, - {} - ], - "42": [ - "", - -2, - {} - ], - "63": [ - "0", - "int", - {} - ], - "64": [ - "'3'", - "str", - { - "len": 1 - } - ], - "65": [ - "", - "m..A", - {} - ], - "88": [ - "3", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "range", - "set", - "staticmethod", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 36, - "start": 27, - "tree_index": 40 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 63, - "start": 49, - "tree_index": 41 - }, - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 87, - "start": 76, - "tree_index": 42 - }, - { - "classes": [], - "depth": 5, - "end": 36, - "start": 31, - "tree_index": 63 - }, - { - "classes": [], - "depth": 5, - "end": 63, - "start": 49, - "tree_index": 64 - }, - { - "classes": [], - "depth": 5, - "end": 87, - "start": 83, - "tree_index": 65 - }, - { - "classes": [], - "depth": 6, - "end": 52, - "start": 49, - "tree_index": 87 - }, - { - "classes": [], - "depth": 6, - "end": 62, - "start": 53, - "tree_index": 88 - }, - { - "classes": [], - "depth": 7, - "end": 58, - "start": 53, - "tree_index": 110 - }, - { - "classes": [], - "depth": 7, - "end": 62, - "start": 61, - "tree_index": 112 - } - ] - }, - "html_body": " @deco\n def foo(self):\n x = 9 * 0\n str(1 + 2 + x)\n return self", - "lineno": 24, - "name": "foo" - }, - "return_value": "", - "traceback": null - }, - { - "arguments": [ - [ - "self", - "" - ] - ], - "data": { - "loop_iterations": {}, - "node_values": { - "45": [ - "", - -2, - {} - ], - "68": [ - "4", - "int", - {} - ] - }, - "num_special_types": 11, - "type_names": [ - "MyClass", - "NoneType", - "SlotClass", - "ValueError", - "bool", - "complex", - "dict", - "float", - "frozenset", - "function", - "generator", - "getset_descriptor", - "int", - "islice", - "list", - "m..A", - "member_descriptor", - "method", - "range", - "set", - "staticmethod", - "str", - "tuple", - "type" - ] - }, - "exception": null, - "function": { - "data": { - "loop_ranges": [], - "node_loops": {}, - "node_ranges": [ - { - "classes": [ - "stmt" - ], - "depth": 4, - "end": 39, - "start": 27, - "tree_index": 45 - }, - { - "classes": [], - "depth": 5, - "end": 39, - "start": 34, - "tree_index": 68 - } - ] - }, - "html_body": " def bar(self):\n return 1 + 3", - "lineno": 30, - "name": "bar" - }, - "return_value": "4", - "traceback": null - } -] \ No newline at end of file From 213db0a1313cb9e13e2e8cc224601b8292516ab9 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 22:07:19 +0200 Subject: [PATCH 08/15] update testing instructions --- birdseye/server.py | 9 --------- docs/contributing.rst | 9 +++------ misc/test.sh | 2 -- tests/__init__.py | 6 ------ tests/test_interface.py | 7 ------- 5 files changed, 3 insertions(+), 30 deletions(-) diff --git a/birdseye/server.py b/birdseye/server.py index 3771969..ae4bc01 100644 --- a/birdseye/server.py +++ b/birdseye/server.py @@ -182,15 +182,6 @@ def ipython_iframe_view(call_id): call_id=call_id) -@app.route('/kill', methods=['POST']) -def kill(): - func = request.environ.get('werkzeug.server.shutdown') - if func is None: - raise RuntimeError('Not running with the Werkzeug Server') - func() - return 'Server shutting down...' - - @app.route('/api/call/') @db.provide_session def api_call_view(session, call_id): diff --git a/docs/contributing.rst b/docs/contributing.rst index a1d5086..43090ca 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -127,14 +127,12 @@ When a function runs Testing ------- -Run ``python setup.py test`` to install test requirements and run all +Run ``./misc/test.sh`` to install test requirements and run all tests with a single Python interpreter. You will need to have -`phantomjs`_ installed, e.g. via:: - - npm install --global phantomjs +`chromedriver` installed. Run `tox`_ (``pip install tox``) to run tests on all supported -versions of Python: 2.7, 3.5, and 3.6. You must install the interpreters +versions of Python. You must install the interpreters separately yourself. Pushes to GitHub will trigger a build on Travis to run tests @@ -165,7 +163,6 @@ debugging the failure locally. If the test only fails on travis, you can use the ``misc/travis_screenshot.py`` script to obtain the screenshot. See the module docstring for details. -.. _phantomjs: http://phantomjs.org/download.html .. _tox: https://tox.readthedocs.io/en/latest/ diff --git a/misc/test.sh b/misc/test.sh index dc79d1f..a55a119 100755 --- a/misc/test.sh +++ b/misc/test.sh @@ -24,8 +24,6 @@ else exit 1 fi -export BIRDSEYE_SERVER_RUNNING=true - python -m gunicorn -b 127.0.0.1:7777 birdseye.server:app & set +e diff --git a/tests/__init__.py b/tests/__init__.py index 13404da..9936efa 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -3,12 +3,6 @@ from birdseye import eye path = os.path.join(os.path.expanduser('~'), '.birdseye_test.db') - -if not os.environ.get('BIRDSEYE_SERVER_RUNNING'): - # Remove the database to start from scratch - if os.path.exists(path): - os.remove(path) - os.environ.setdefault('BIRDSEYE_DB', 'sqlite:///' + path) repr_str.maxparts = 30 diff --git a/tests/test_interface.py b/tests/test_interface.py index 8cc9b03..9d4475a 100644 --- a/tests/test_interface.py +++ b/tests/test_interface.py @@ -45,8 +45,6 @@ def setUp(self): self.driver = webdriver.Chrome(options=chrome_options) self.driver.set_window_size(1600, 1200) self.driver.implicitly_wait(2) - if not os.environ.get('BIRDSEYE_SERVER_RUNNING'): - Thread(target=lambda: app.run(port=7777)).start() def test(self): try: @@ -168,8 +166,3 @@ def step(loop, increment): find_expr('bar()').find_element(By.CLASS_NAME, 'inner-call').click() self.assertEqual(driver.find_element(By.TAG_NAME, 'h2').text, 'Call to function: bar') - - def tearDown(self): - if not os.environ.get('BIRDSEYE_SERVER_RUNNING'): - self.assertEqual(requests.post('http://localhost:7777/kill').text, - 'Server shutting down...') From 8aaba30f3a3a3075b80a76259a1de78e25ecec2d Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 22:10:32 +0200 Subject: [PATCH 09/15] update setup.cfg --- setup.cfg | 15 +++++++-------- tests/test_interface.py | 4 ---- 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/setup.cfg b/setup.cfg index e73ca93..2123a56 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,14 +10,13 @@ long_description_content_type = text/x-rst classifiers = Intended Audience :: Developers Programming Language :: Python - Programming Language :: Python :: 2 - Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.5 - Programming Language :: Python :: 3.6 - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 License :: OSI Approved :: MIT License Operating System :: OS Independent Topic :: Software Development :: Debuggers @@ -33,7 +32,6 @@ install_requires = cheap_repr outdated cached_property - backports.functools_lru_cache; python_version == "2.7" setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3 include_package_data = True @@ -44,13 +42,14 @@ test_suite = tests tests = bs4 selenium - requests pytest - numpy>=1.16.5 + numpy pandas gunicorn twine build + psycopg2 + mysql-connector-python [options.entry_points] console_scripts = diff --git a/tests/test_interface.py b/tests/test_interface.py index 9d4475a..c2dfb83 100644 --- a/tests/test_interface.py +++ b/tests/test_interface.py @@ -1,9 +1,6 @@ -import os import unittest -from threading import Thread from time import sleep -import requests from littleutils import only from selenium import webdriver from selenium.webdriver import ActionChains @@ -11,7 +8,6 @@ from selenium.webdriver.common.by import By from birdseye import eye -from birdseye.server import app @eye From b197934233117499cae67a8cd870146e3cc87b81 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 22:14:45 +0200 Subject: [PATCH 10/15] GHA --- .github/workflows/workflow.yml | 31 +++++++++++++++++++++++++++++++ misc/travis_test.sh | 7 ------- 2 files changed, 31 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/workflow.yml delete mode 100755 misc/travis_test.sh diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..0acc96a --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,31 @@ +name: CI +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12, 3.13 ] + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + allow-prereleases: true + - name: Set up Node + uses: actions/setup-node@v4 + - name: Install chromedriver + uses: nanasess/setup-chromedriver@master + - name: run tests + run: | + pip install --upgrade pip + pip install .[tests] + ./misc/test.sh diff --git a/misc/travis_test.sh b/misc/travis_test.sh deleted file mode 100755 index 5ab7d22..0000000 --- a/misc/travis_test.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -sudo cp node_modules/chromedriver/lib/chromedriver/chromedriver /usr/local/bin/chromedriver - -pip install -e . - -./misc/test.sh From 37a505a38e3b9b151269982febf97db3adbce7d6 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 22:17:20 +0200 Subject: [PATCH 11/15] db matrix --- .github/workflows/workflow.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 0acc96a..a65fe28 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -13,6 +13,7 @@ jobs: strategy: matrix: python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12, 3.13 ] + db: [ sqlite, mysql, postgres ] steps: - uses: actions/checkout@v4 - name: Set up Python @@ -29,3 +30,6 @@ jobs: pip install --upgrade pip pip install .[tests] ./misc/test.sh + with: + env: + DB: ${{ matrix.db }} From 4b4ffd75d05369f7187de3d3515c6fdd22990300 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 22:19:46 +0200 Subject: [PATCH 12/15] db matrix: revert --- .github/workflows/workflow.yml | 4 ---- .travis.yml | 38 ---------------------------------- setup.cfg | 2 -- 3 files changed, 44 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index a65fe28..0acc96a 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -13,7 +13,6 @@ jobs: strategy: matrix: python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12, 3.13 ] - db: [ sqlite, mysql, postgres ] steps: - uses: actions/checkout@v4 - name: Set up Python @@ -30,6 +29,3 @@ jobs: pip install --upgrade pip pip install .[tests] ./misc/test.sh - with: - env: - DB: ${{ matrix.db }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index b497425..0000000 --- a/.travis.yml +++ /dev/null @@ -1,38 +0,0 @@ -dist: xenial -sudo: required -language: python -python: - - 2.7 - - 3.5 - - 3.6 - - 3.7 - - 3.8 - - 3.9 - -before_install: - - nvm install 12 - -install: - - pip install .[tests] - - pip install gunicorn psycopg2 mysql-connector-python==8.0.23 - - npm install chromedriver - -script: - - ./misc/travis_test.sh - -env: - - DB=sqlite - - DB=mysql - - DB=postgres - -services: - - mysql - - postgresql - - xvfb - -notifications: - email: false - -# Based on https://gist.github.com/chitoku-k/67068aa62aa3f077f5307ca9a822ce74 -addons: - chrome: stable diff --git a/setup.cfg b/setup.cfg index 2123a56..658412a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -48,8 +48,6 @@ tests = gunicorn twine build - psycopg2 - mysql-connector-python [options.entry_points] console_scripts = From 3afbe37540475bd845b83d36b65006f679423918 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 22:23:09 +0200 Subject: [PATCH 13/15] remove references to phantomjs and travis --- README.rst | 6 ++--- docs/contributing.rst | 9 ++----- misc/travis_screenshot.py | 57 --------------------------------------- 3 files changed, 4 insertions(+), 68 deletions(-) delete mode 100644 misc/travis_screenshot.py diff --git a/README.rst b/README.rst index 729e006..0dc6803 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ |logo| birdseye =============== -|Build Status| |Supports Python versions 2.7 and 3.5+| +|Supports Python versions 3.8+| birdseye is a Python debugger which records the values of expressions in a function call and lets you easily view them after the function exits. @@ -43,9 +43,7 @@ ordered by time, letting you see what happens at a glance: :alt: List of function calls .. |logo| image:: https://i.imgur.com/i7uaJDO.png -.. |Build Status| image:: https://travis-ci.com/alexmojaki/birdseye.svg?branch=master - :target: https://travis-ci.com/alexmojaki/birdseye -.. |Supports Python versions 2.7 and 3.5+| image:: https://img.shields.io/pypi/pyversions/birdseye.svg +.. |Supports Python versions 3.8+| image:: https://img.shields.io/pypi/pyversions/birdseye.svg :target: https://pypi.python.org/pypi/birdseye .. inclusion-end-marker diff --git a/docs/contributing.rst b/docs/contributing.rst index 43090ca..3d9812b 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -135,9 +135,6 @@ Run `tox`_ (``pip install tox``) to run tests on all supported versions of Python. You must install the interpreters separately yourself. -Pushes to GitHub will trigger a build on Travis to run tests -automatically. This will run ``misc/travis_test.sh``. - ``test_against_files`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -157,11 +154,9 @@ interpreters, so tox is recommended. Browser screenshots for test failures ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -``test_interface.py`` runs a test using selenium and phantomjs. If it +``test_interface.py`` runs a test using selenium and headless Chrome. If it fails, it produces a file ``error_screenshot.png`` which is helpful for -debugging the failure locally. If the test only fails on travis, you can -use the ``misc/travis_screenshot.py`` script to obtain the screenshot. See -the module docstring for details. +debugging the failure locally. .. _tox: https://tox.readthedocs.io/en/latest/ diff --git a/misc/travis_screenshot.py b/misc/travis_screenshot.py deleted file mode 100644 index 8aa914c..0000000 --- a/misc/travis_screenshot.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -This script lets you view a screenshot of the browser produced by selenium -when a test fails on travis. - -To run this script you will first need to: - - pip install pyperclip jsonfinder requests - -Open a travis build job with a failed interface test. There should be logs with a big JSON -blob produced by selenium, including an encoding of a screenshot of the browswer when the -error occurred. Copy the URL of the job to your clipboard. Here is an example: - - https://travis-ci.org/alexmojaki/birdseye/jobs/290114752 - -Then run the script as simply follows: - - python travis_screenshot.py - -The script doesn't take arguments, it reads the URL from the clipboard. - -The result will be a file such as screen_0.png. - -""" - -import json -import re -from base64 import b64decode - -import pyperclip -import requests -from jsonfinder import jsonfinder - -log_url = re.sub(r'.+/(jobs/\d+)', r'https://api.travis-ci.org/\1/log.txt?deansi=true', - pyperclip.paste()) - -text = requests.get(log_url).text - -i = 0 -for _, _, obj in jsonfinder(text): - if (isinstance(obj, dict) and - 'selenium' in str(obj) and - 'screen' in obj.get('value', {})): - obj = obj['value'] - screen = obj.pop('screen') - message = obj - try: - message = message['message'] - message = json.loads(message) - message = message['errorMessage'] - except (ValueError, KeyError): - pass - filename = 'screen_%s.png' % i - i += 1 - with open(filename, 'wb') as f: - f.write(b64decode(screen)) - print('Wrote ' + filename) - print('Message: %s' % message) From 4af80f52cd05264b0810a9eb9ab57637bf5b72e1 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sat, 12 Oct 2024 22:24:17 +0200 Subject: [PATCH 14/15] python_requires --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 658412a..33ec6e5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -34,6 +34,7 @@ install_requires = cached_property setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3 +python_requires = >=3.8 include_package_data = True test_suite = tests From f9f3f855119cc8b967d68104c2f810a3d5350d44 Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Sun, 13 Oct 2024 22:32:30 +0200 Subject: [PATCH 15/15] not universal --- setup.cfg | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 33ec6e5..210e22e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -53,6 +53,3 @@ tests = [options.entry_points] console_scripts = birdseye = birdseye.server:main - -[bdist_wheel] -universal=1