Files
fesmoo_perdoliq/baraban.build/module.future.builtins.iterators.c

988 lines
34 KiB
C
Raw Normal View History

2019-12-06 12:23:21 +03:00
/* Generated code for Python source for module 'future.builtins.iterators'
* created by Nuitka version 0.6.0
*
* This code is in part copyright 2018 Kay Hayen.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "nuitka/prelude.h"
#include "__helpers.h"
/* The _module_future$builtins$iterators is a Python object pointer of module type. */
/* Note: For full compatibility with CPython, every module variable access
* needs to go through it except for cases where the module cannot possibly
* have changed in the mean time.
*/
PyObject *module_future$builtins$iterators;
PyDictObject *moduledict_future$builtins$iterators;
/* The module constants used, if any. */
extern PyObject *const_str_plain_itertools;
extern PyObject *const_str_digest_96b7425961f73d341c56a14b3f3d9e23;
static PyObject *const_list_str_plain_filter_str_plain_map_str_plain_range_str_plain_zip_list;
static PyObject *const_str_digest_8d35e5f546313e1cba41a28844da2d38;
extern PyObject *const_str_plain_map;
extern PyObject *const_str_plain_range;
extern PyObject *const_str_plain___all__;
extern PyObject *const_str_plain_builtins;
extern PyObject *const_str_plain_zip;
extern PyObject *const_str_plain___file__;
extern PyObject *const_str_plain_newrange;
extern PyObject *const_str_digest_b11cb6ef6fb95015fcdb3db466fd02b4;
extern PyObject *const_int_0;
extern PyObject *const_str_plain_division;
extern PyObject *const_str_plain___doc__;
extern PyObject *const_tuple_str_plain_newrange_tuple;
extern PyObject *const_str_plain_print_function;
extern PyObject *const_str_plain_future;
extern PyObject *const_tuple_str_plain_utils_tuple;
extern PyObject *const_tuple_empty;
extern PyObject *const_str_plain_filter;
static PyObject *const_str_digest_e468866fc4956a888d153c0515371af0;
extern PyObject *const_str_plain_izip;
static PyObject *const_str_digest_4ae22f73ab0e32ac55fe00bddc11a344;
extern PyObject *const_str_plain_utils;
extern PyObject *const_str_plain_PY3;
extern PyObject *const_str_plain_ifilter;
extern PyObject *const_str_plain_absolute_import;
extern PyObject *const_str_plain___cached__;
extern PyObject *const_str_plain_imap;
static PyObject *module_filename_obj;
static bool constants_created = false;
static void createModuleConstants( void )
{
const_list_str_plain_filter_str_plain_map_str_plain_range_str_plain_zip_list = PyList_New( 4 );
PyList_SET_ITEM( const_list_str_plain_filter_str_plain_map_str_plain_range_str_plain_zip_list, 0, const_str_plain_filter ); Py_INCREF( const_str_plain_filter );
PyList_SET_ITEM( const_list_str_plain_filter_str_plain_map_str_plain_range_str_plain_zip_list, 1, const_str_plain_map ); Py_INCREF( const_str_plain_map );
PyList_SET_ITEM( const_list_str_plain_filter_str_plain_map_str_plain_range_str_plain_zip_list, 2, const_str_plain_range ); Py_INCREF( const_str_plain_range );
PyList_SET_ITEM( const_list_str_plain_filter_str_plain_map_str_plain_range_str_plain_zip_list, 3, const_str_plain_zip ); Py_INCREF( const_str_plain_zip );
const_str_digest_8d35e5f546313e1cba41a28844da2d38 = UNSTREAM_STRING( &constant_bin[ 699812 ], 944, 0 );
const_str_digest_e468866fc4956a888d153c0515371af0 = UNSTREAM_STRING( &constant_bin[ 700756 ], 61, 0 );
const_str_digest_4ae22f73ab0e32ac55fe00bddc11a344 = UNSTREAM_STRING( &constant_bin[ 700817 ], 34, 0 );
constants_created = true;
}
#ifndef __NUITKA_NO_ASSERT__
void checkModuleConstants_future$builtins$iterators( void )
{
// The module may not have been used at all.
if (constants_created == false) return;
}
#endif
// The module code objects.
static PyCodeObject *codeobj_216e6bea7af670a559e108c235f66060;
static void createModuleCodeObjects(void)
{
module_filename_obj = const_str_digest_e468866fc4956a888d153c0515371af0;
codeobj_216e6bea7af670a559e108c235f66060 = MAKE_CODEOBJ( module_filename_obj, const_str_digest_4ae22f73ab0e32ac55fe00bddc11a344, 1, const_tuple_empty, 0, 0, CO_NOFREE );
}
// The module function declarations.
// The module function definitions.
#if PYTHON_VERSION >= 300
static struct PyModuleDef mdef_future$builtins$iterators =
{
PyModuleDef_HEAD_INIT,
"future.builtins.iterators", /* m_name */
NULL, /* m_doc */
-1, /* m_size */
NULL, /* m_methods */
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
NULL, /* m_free */
};
#endif
extern PyObject *const_str_plain___package__;
#if PYTHON_VERSION >= 300
extern PyObject *const_str_dot;
extern PyObject *const_str_plain___loader__;
extern PyObject *metapath_based_loader;
#endif
#if PYTHON_VERSION >= 340
extern PyObject *const_str_plain___spec__;
extern PyObject *const_str_plain__initializing;
#endif
extern void _initCompiledCellType();
extern void _initCompiledGeneratorType();
extern void _initCompiledFunctionType();
extern void _initCompiledMethodType();
extern void _initCompiledFrameType();
#if PYTHON_VERSION >= 350
extern void _initCompiledCoroutineTypes();
#endif
#if PYTHON_VERSION >= 360
extern void _initCompiledAsyncgenTypes();
#endif
// The exported interface to CPython. On import of the module, this function
// gets called. It has to have an exact function name, in cases it's a shared
// library export. This is hidden behind the MOD_INIT_DECL.
MOD_INIT_DECL( future$builtins$iterators )
{
#if defined(_NUITKA_EXE) || PYTHON_VERSION >= 300
static bool _init_done = false;
// Modules might be imported repeatedly, which is to be ignored.
if ( _init_done )
{
return MOD_RETURN_VALUE( module_future$builtins$iterators );
}
else
{
_init_done = true;
}
#endif
#ifdef _NUITKA_MODULE
// In case of a stand alone extension module, need to call initialization
// the init here because that's the first and only time we are going to get
// called here.
// Initialize the constant values used.
_initBuiltinModule();
createGlobalConstants();
/* Initialize the compiled types of Nuitka. */
_initCompiledCellType();
_initCompiledGeneratorType();
_initCompiledFunctionType();
_initCompiledMethodType();
_initCompiledFrameType();
#if PYTHON_VERSION >= 350
_initCompiledCoroutineTypes();
#endif
#if PYTHON_VERSION >= 360
_initCompiledAsyncgenTypes();
#endif
#if PYTHON_VERSION < 300
_initSlotCompare();
#endif
#if PYTHON_VERSION >= 270
_initSlotIternext();
#endif
patchBuiltinModule();
patchTypeComparison();
// Enable meta path based loader if not already done.
#ifdef _NUITKA_TRACE
puts("future.builtins.iterators: Calling setupMetaPathBasedLoader().");
#endif
setupMetaPathBasedLoader();
#if PYTHON_VERSION >= 300
patchInspectModule();
#endif
#endif
/* The constants only used by this module are created now. */
#ifdef _NUITKA_TRACE
puts("future.builtins.iterators: Calling createModuleConstants().");
#endif
createModuleConstants();
/* The code objects used by this module are created now. */
#ifdef _NUITKA_TRACE
puts("future.builtins.iterators: Calling createModuleCodeObjects().");
#endif
createModuleCodeObjects();
// puts( "in initfuture$builtins$iterators" );
// Create the module object first. There are no methods initially, all are
// added dynamically in actual code only. Also no "__doc__" is initially
// set at this time, as it could not contain NUL characters this way, they
// are instead set in early module code. No "self" for modules, we have no
// use for it.
#if PYTHON_VERSION < 300
module_future$builtins$iterators = Py_InitModule4(
"future.builtins.iterators", // Module Name
NULL, // No methods initially, all are added
// dynamically in actual module code only.
NULL, // No "__doc__" is initially set, as it could
// not contain NUL this way, added early in
// actual code.
NULL, // No self for modules, we don't use it.
PYTHON_API_VERSION
);
#else
module_future$builtins$iterators = PyModule_Create( &mdef_future$builtins$iterators );
#endif
moduledict_future$builtins$iterators = MODULE_DICT( module_future$builtins$iterators );
// Update "__package__" value to what it ought to be.
{
#if 0
PyObject *module_name = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___name__ );
UPDATE_STRING_DICT1(
moduledict_future$builtins$iterators,
(Nuitka_StringObject *)const_str_plain___package__,
module_name
);
#else
#if PYTHON_VERSION < 300
PyObject *module_name = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___name__ );
char const *module_name_cstr = PyString_AS_STRING( module_name );
char const *last_dot = strrchr( module_name_cstr, '.' );
if ( last_dot != NULL )
{
UPDATE_STRING_DICT1(
moduledict_future$builtins$iterators,
(Nuitka_StringObject *)const_str_plain___package__,
PyString_FromStringAndSize( module_name_cstr, last_dot - module_name_cstr )
);
}
#else
PyObject *module_name = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___name__ );
Py_ssize_t dot_index = PyUnicode_Find( module_name, const_str_dot, 0, PyUnicode_GetLength( module_name ), -1 );
if ( dot_index != -1 )
{
UPDATE_STRING_DICT1(
moduledict_future$builtins$iterators,
(Nuitka_StringObject *)const_str_plain___package__,
PyUnicode_Substring( module_name, 0, dot_index )
);
}
#endif
#endif
}
CHECK_OBJECT( module_future$builtins$iterators );
// Seems to work for Python2.7 out of the box, but for Python3, the module
// doesn't automatically enter "sys.modules", so do it manually.
#if PYTHON_VERSION >= 300
{
int r = PyObject_SetItem( PySys_GetObject( (char *)"modules" ), const_str_digest_b11cb6ef6fb95015fcdb3db466fd02b4, module_future$builtins$iterators );
assert( r != -1 );
}
#endif
// For deep importing of a module we need to have "__builtins__", so we set
// it ourselves in the same way than CPython does. Note: This must be done
// before the frame object is allocated, or else it may fail.
if ( GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___builtins__ ) == NULL )
{
PyObject *value = (PyObject *)builtin_module;
// Check if main module, not a dict then but the module itself.
#if !defined(_NUITKA_EXE) || !0
value = PyModule_GetDict( value );
#endif
UPDATE_STRING_DICT0( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___builtins__, value );
}
#if PYTHON_VERSION >= 300
UPDATE_STRING_DICT0( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___loader__, metapath_based_loader );
#endif
#if PYTHON_VERSION >= 340
#if 0
UPDATE_STRING_DICT0( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___spec__, Py_None );
#else
{
PyObject *bootstrap_module = PyImport_ImportModule("importlib._bootstrap");
CHECK_OBJECT( bootstrap_module );
PyObject *module_spec_class = PyObject_GetAttrString( bootstrap_module, "ModuleSpec" );
Py_DECREF( bootstrap_module );
PyObject *args[] = {
GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___name__ ),
metapath_based_loader
};
PyObject *spec_value = CALL_FUNCTION_WITH_ARGS2(
module_spec_class,
args
);
SET_ATTRIBUTE( spec_value, const_str_plain__initializing, Py_True );
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___spec__, spec_value );
Py_DECREF( module_spec_class );
}
#endif
#endif
// Temp variables if any
PyObject *tmp_import_from_1__module = NULL;
struct Nuitka_FrameObject *frame_216e6bea7af670a559e108c235f66060;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
int tmp_res;
// Module code.
{
PyObject *tmp_assign_source_1;
tmp_assign_source_1 = const_str_digest_8d35e5f546313e1cba41a28844da2d38;
UPDATE_STRING_DICT0( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___doc__, tmp_assign_source_1 );
}
{
PyObject *tmp_assign_source_2;
tmp_assign_source_2 = const_str_digest_e468866fc4956a888d153c0515371af0;
UPDATE_STRING_DICT0( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___file__, tmp_assign_source_2 );
}
{
PyObject *tmp_assign_source_3;
tmp_assign_source_3 = Py_None;
UPDATE_STRING_DICT0( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___cached__, tmp_assign_source_3 );
}
{
PyObject *tmp_assign_source_4;
tmp_assign_source_4 = PyImport_ImportModule("__future__");
assert( !(tmp_assign_source_4 == NULL) );
assert( tmp_import_from_1__module == NULL );
Py_INCREF( tmp_assign_source_4 );
tmp_import_from_1__module = tmp_assign_source_4;
}
// Frame without reuse.
frame_216e6bea7af670a559e108c235f66060 = MAKE_MODULE_FRAME( codeobj_216e6bea7af670a559e108c235f66060, module_future$builtins$iterators );
// Push the new frame as the currently active one, and we should be exclusively
// owning it.
pushFrameStack( frame_216e6bea7af670a559e108c235f66060 );
assert( Py_REFCNT( frame_216e6bea7af670a559e108c235f66060 ) == 2 );
// Framed code:
{
// Tried code:
{
PyObject *tmp_assign_source_5;
PyObject *tmp_import_name_from_1;
CHECK_OBJECT( tmp_import_from_1__module );
tmp_import_name_from_1 = tmp_import_from_1__module;
tmp_assign_source_5 = IMPORT_NAME( tmp_import_name_from_1, const_str_plain_division );
if ( tmp_assign_source_5 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 35;
goto try_except_handler_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_division, tmp_assign_source_5 );
}
{
PyObject *tmp_assign_source_6;
PyObject *tmp_import_name_from_2;
CHECK_OBJECT( tmp_import_from_1__module );
tmp_import_name_from_2 = tmp_import_from_1__module;
tmp_assign_source_6 = IMPORT_NAME( tmp_import_name_from_2, const_str_plain_absolute_import );
if ( tmp_assign_source_6 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 35;
goto try_except_handler_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_absolute_import, tmp_assign_source_6 );
}
{
PyObject *tmp_assign_source_7;
PyObject *tmp_import_name_from_3;
CHECK_OBJECT( tmp_import_from_1__module );
tmp_import_name_from_3 = tmp_import_from_1__module;
tmp_assign_source_7 = IMPORT_NAME( tmp_import_name_from_3, const_str_plain_print_function );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 35;
goto try_except_handler_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_print_function, tmp_assign_source_7 );
}
goto try_end_1;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
{
CHECK_OBJECT( (PyObject *)tmp_import_from_1__module );
Py_DECREF( tmp_import_from_1__module );
tmp_import_from_1__module = NULL;
}
{
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto frame_exception_exit_1;
}
// End of try:
try_end_1:;
}
{
CHECK_OBJECT( (PyObject *)tmp_import_from_1__module );
Py_DECREF( tmp_import_from_1__module );
tmp_import_from_1__module = NULL;
}
{
PyObject *tmp_assign_source_8;
PyObject *tmp_name_name_1;
PyObject *tmp_globals_name_1;
PyObject *tmp_locals_name_1;
PyObject *tmp_fromlist_name_1;
PyObject *tmp_level_name_1;
tmp_name_name_1 = const_str_plain_itertools;
tmp_globals_name_1 = (PyObject *)moduledict_future$builtins$iterators;
tmp_locals_name_1 = Py_None;
tmp_fromlist_name_1 = Py_None;
tmp_level_name_1 = const_int_0;
frame_216e6bea7af670a559e108c235f66060->m_frame.f_lineno = 37;
tmp_assign_source_8 = IMPORT_MODULE5( tmp_name_name_1, tmp_globals_name_1, tmp_locals_name_1, tmp_fromlist_name_1, tmp_level_name_1 );
assert( !(tmp_assign_source_8 == NULL) );
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_itertools, tmp_assign_source_8 );
}
{
PyObject *tmp_assign_source_9;
PyObject *tmp_import_name_from_4;
PyObject *tmp_name_name_2;
PyObject *tmp_globals_name_2;
PyObject *tmp_locals_name_2;
PyObject *tmp_fromlist_name_2;
PyObject *tmp_level_name_2;
tmp_name_name_2 = const_str_plain_future;
tmp_globals_name_2 = (PyObject *)moduledict_future$builtins$iterators;
tmp_locals_name_2 = Py_None;
tmp_fromlist_name_2 = const_tuple_str_plain_utils_tuple;
tmp_level_name_2 = const_int_0;
frame_216e6bea7af670a559e108c235f66060->m_frame.f_lineno = 38;
tmp_import_name_from_4 = IMPORT_MODULE5( tmp_name_name_2, tmp_globals_name_2, tmp_locals_name_2, tmp_fromlist_name_2, tmp_level_name_2 );
if ( tmp_import_name_from_4 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 38;
goto frame_exception_exit_1;
}
tmp_assign_source_9 = IMPORT_NAME( tmp_import_name_from_4, const_str_plain_utils );
Py_DECREF( tmp_import_name_from_4 );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 38;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_utils, tmp_assign_source_9 );
}
{
nuitka_bool tmp_condition_result_1;
PyObject *tmp_operand_name_1;
PyObject *tmp_source_name_1;
PyObject *tmp_mvar_value_1;
tmp_mvar_value_1 = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_utils );
if (unlikely( tmp_mvar_value_1 == NULL ))
{
tmp_mvar_value_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_utils );
}
CHECK_OBJECT( tmp_mvar_value_1 );
tmp_source_name_1 = tmp_mvar_value_1;
tmp_operand_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_PY3 );
if ( tmp_operand_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 40;
goto frame_exception_exit_1;
}
tmp_res = CHECK_IF_TRUE( tmp_operand_name_1 );
Py_DECREF( tmp_operand_name_1 );
if ( tmp_res == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 40;
goto frame_exception_exit_1;
}
tmp_condition_result_1 = ( tmp_res == 0 ) ? NUITKA_BOOL_TRUE : NUITKA_BOOL_FALSE;
if ( tmp_condition_result_1 == NUITKA_BOOL_TRUE )
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
{
PyObject *tmp_assign_source_10;
PyObject *tmp_source_name_2;
PyObject *tmp_mvar_value_2;
tmp_mvar_value_2 = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_itertools );
if (unlikely( tmp_mvar_value_2 == NULL ))
{
tmp_mvar_value_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_itertools );
}
if ( tmp_mvar_value_2 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "itertools" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 41;
goto frame_exception_exit_1;
}
tmp_source_name_2 = tmp_mvar_value_2;
tmp_assign_source_10 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_ifilter );
if ( tmp_assign_source_10 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 41;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_filter, tmp_assign_source_10 );
}
{
PyObject *tmp_assign_source_11;
PyObject *tmp_source_name_3;
PyObject *tmp_mvar_value_3;
tmp_mvar_value_3 = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_itertools );
if (unlikely( tmp_mvar_value_3 == NULL ))
{
tmp_mvar_value_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_itertools );
}
if ( tmp_mvar_value_3 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "itertools" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 42;
goto frame_exception_exit_1;
}
tmp_source_name_3 = tmp_mvar_value_3;
tmp_assign_source_11 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_imap );
if ( tmp_assign_source_11 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 42;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_map, tmp_assign_source_11 );
}
{
PyObject *tmp_assign_source_12;
PyObject *tmp_import_name_from_5;
PyObject *tmp_name_name_3;
PyObject *tmp_globals_name_3;
PyObject *tmp_locals_name_3;
PyObject *tmp_fromlist_name_3;
PyObject *tmp_level_name_3;
tmp_name_name_3 = const_str_digest_96b7425961f73d341c56a14b3f3d9e23;
tmp_globals_name_3 = (PyObject *)moduledict_future$builtins$iterators;
tmp_locals_name_3 = Py_None;
tmp_fromlist_name_3 = const_tuple_str_plain_newrange_tuple;
tmp_level_name_3 = const_int_0;
frame_216e6bea7af670a559e108c235f66060->m_frame.f_lineno = 43;
tmp_import_name_from_5 = IMPORT_MODULE5( tmp_name_name_3, tmp_globals_name_3, tmp_locals_name_3, tmp_fromlist_name_3, tmp_level_name_3 );
if ( tmp_import_name_from_5 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 43;
goto frame_exception_exit_1;
}
tmp_assign_source_12 = IMPORT_NAME( tmp_import_name_from_5, const_str_plain_newrange );
Py_DECREF( tmp_import_name_from_5 );
if ( tmp_assign_source_12 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 43;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_range, tmp_assign_source_12 );
}
{
PyObject *tmp_assign_source_13;
PyObject *tmp_source_name_4;
PyObject *tmp_mvar_value_4;
tmp_mvar_value_4 = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_itertools );
if (unlikely( tmp_mvar_value_4 == NULL ))
{
tmp_mvar_value_4 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_itertools );
}
if ( tmp_mvar_value_4 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "itertools" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 44;
goto frame_exception_exit_1;
}
tmp_source_name_4 = tmp_mvar_value_4;
tmp_assign_source_13 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_izip );
if ( tmp_assign_source_13 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 44;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_zip, tmp_assign_source_13 );
}
{
PyObject *tmp_assign_source_14;
tmp_assign_source_14 = LIST_COPY( const_list_str_plain_filter_str_plain_map_str_plain_range_str_plain_zip_list );
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___all__, tmp_assign_source_14 );
}
goto branch_end_1;
branch_no_1:;
{
PyObject *tmp_assign_source_15;
PyObject *tmp_name_name_4;
PyObject *tmp_globals_name_4;
PyObject *tmp_locals_name_4;
PyObject *tmp_fromlist_name_4;
PyObject *tmp_level_name_4;
tmp_name_name_4 = const_str_plain_builtins;
tmp_globals_name_4 = (PyObject *)moduledict_future$builtins$iterators;
tmp_locals_name_4 = Py_None;
tmp_fromlist_name_4 = Py_None;
tmp_level_name_4 = const_int_0;
frame_216e6bea7af670a559e108c235f66060->m_frame.f_lineno = 47;
tmp_assign_source_15 = IMPORT_MODULE5( tmp_name_name_4, tmp_globals_name_4, tmp_locals_name_4, tmp_fromlist_name_4, tmp_level_name_4 );
assert( !(tmp_assign_source_15 == NULL) );
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_builtins, tmp_assign_source_15 );
}
{
PyObject *tmp_assign_source_16;
PyObject *tmp_source_name_5;
PyObject *tmp_mvar_value_5;
tmp_mvar_value_5 = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_builtins );
if (unlikely( tmp_mvar_value_5 == NULL ))
{
tmp_mvar_value_5 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_builtins );
}
CHECK_OBJECT( tmp_mvar_value_5 );
tmp_source_name_5 = tmp_mvar_value_5;
tmp_assign_source_16 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_filter );
if ( tmp_assign_source_16 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 48;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_filter, tmp_assign_source_16 );
}
{
PyObject *tmp_assign_source_17;
PyObject *tmp_source_name_6;
PyObject *tmp_mvar_value_6;
tmp_mvar_value_6 = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_builtins );
if (unlikely( tmp_mvar_value_6 == NULL ))
{
tmp_mvar_value_6 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_builtins );
}
if ( tmp_mvar_value_6 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "builtins" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 49;
goto frame_exception_exit_1;
}
tmp_source_name_6 = tmp_mvar_value_6;
tmp_assign_source_17 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_map );
if ( tmp_assign_source_17 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 49;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_map, tmp_assign_source_17 );
}
{
PyObject *tmp_assign_source_18;
PyObject *tmp_source_name_7;
PyObject *tmp_mvar_value_7;
tmp_mvar_value_7 = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_builtins );
if (unlikely( tmp_mvar_value_7 == NULL ))
{
tmp_mvar_value_7 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_builtins );
}
if ( tmp_mvar_value_7 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "builtins" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 50;
goto frame_exception_exit_1;
}
tmp_source_name_7 = tmp_mvar_value_7;
tmp_assign_source_18 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_range );
if ( tmp_assign_source_18 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 50;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_range, tmp_assign_source_18 );
}
{
PyObject *tmp_assign_source_19;
PyObject *tmp_source_name_8;
PyObject *tmp_mvar_value_8;
tmp_mvar_value_8 = GET_STRING_DICT_VALUE( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_builtins );
if (unlikely( tmp_mvar_value_8 == NULL ))
{
tmp_mvar_value_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_builtins );
}
if ( tmp_mvar_value_8 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "builtins" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 51;
goto frame_exception_exit_1;
}
tmp_source_name_8 = tmp_mvar_value_8;
tmp_assign_source_19 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain_zip );
if ( tmp_assign_source_19 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 51;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain_zip, tmp_assign_source_19 );
}
{
PyObject *tmp_assign_source_20;
tmp_assign_source_20 = PyList_New( 0 );
UPDATE_STRING_DICT1( moduledict_future$builtins$iterators, (Nuitka_StringObject *)const_str_plain___all__, tmp_assign_source_20 );
}
branch_end_1:;
}
// Restore frame exception if necessary.
#if 0
RESTORE_FRAME_EXCEPTION( frame_216e6bea7af670a559e108c235f66060 );
#endif
popFrameStack();
assertFrameObject( frame_216e6bea7af670a559e108c235f66060 );
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_216e6bea7af670a559e108c235f66060 );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_216e6bea7af670a559e108c235f66060, exception_lineno );
}
else if ( exception_tb->tb_frame != &frame_216e6bea7af670a559e108c235f66060->m_frame )
{
exception_tb = ADD_TRACEBACK( exception_tb, frame_216e6bea7af670a559e108c235f66060, exception_lineno );
}
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto module_exception_exit;
frame_no_exception_1:;
return MOD_RETURN_VALUE( module_future$builtins$iterators );
module_exception_exit:
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return MOD_RETURN_VALUE( NULL );
}