├── .bowerrc ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .hgignore ├── .travis.yml ├── CONTRIBUTING.md ├── HACKING.md ├── LICENSE ├── README.md ├── bower.json ├── debugger └── debugger.js ├── dist-update.sh ├── doc ├── ReferenceManual.rst ├── static │ ├── ProgMan │ │ └── Sk.misceval.Break.html │ └── vegatest.html └── suspensions.txt ├── example ├── calling_from_js.html ├── ipython.css ├── ipython.html ├── ipython.js ├── turtle.html ├── webgl │ ├── webgl-0001-basic.html │ ├── webgl-0002-viewport.html │ ├── webgl-0003-color.html │ ├── webgl-0004-movement.html │ └── webgl-0005-3d.html └── webglq2 │ └── q2bspload.py ├── gen ├── astnodes.js └── parse_tables.js ├── jsdoc.json ├── m ├── main.js ├── package.json ├── repl └── repl.js ├── skulpt.cmd ├── skulpt.py ├── src ├── abstract.js ├── assert-dev.js ├── assert-prod.js ├── ast.js ├── bool.js ├── builtin.js ├── builtin │ ├── sys.js │ └── this.py ├── builtindict.js ├── bytes.js ├── check.js ├── compile.js ├── complex.js ├── constants.js ├── descr.js ├── dict.js ├── enumerate.js ├── env.js ├── errors.js ├── ffi.js ├── file.js ├── filter.js ├── float.js ├── formatting.js ├── function.js ├── generator.js ├── generic.js ├── generic_alias.js ├── import.js ├── int.js ├── lib │ ├── BaseHTTPServer.py │ ├── Bastion.py │ ├── CGIHTTPServer.py │ ├── ConfigParser.py │ ├── Cookie.py │ ├── DocXMLRPCServer.py │ ├── HTMLParser.py │ ├── JoBase.js │ ├── MimeWriter.py │ ├── Queue.py │ ├── SimpleHTTPServer.py │ ├── SimpleXMLRPCServer.py │ ├── SocketServer.py │ ├── StringIO.py │ ├── UserDict.py │ ├── UserList.py │ ├── UserString.py │ ├── _LWPCookieJar.py │ ├── _MozillaCookieJar.py │ ├── __future__.py │ ├── __phello__.foo.py │ ├── _abcoll.py │ ├── _random.js │ ├── _sk_fail.py │ ├── _strptime.js │ ├── _threading_local.py │ ├── abc.py │ ├── aifc.py │ ├── altair │ │ ├── __init__.py │ │ └── vega_caller.js │ ├── antigravity.py │ ├── anydbm.py │ ├── array.js │ ├── ast.py │ ├── asynchat.py │ ├── asyncore.py │ ├── atexit.py │ ├── audiodev.py │ ├── base64.py │ ├── bdb.py │ ├── binhex.py │ ├── bisect.py │ ├── bsddb │ │ └── __init__.py │ ├── cProfile.py │ ├── calendar.js │ ├── cellbotics │ │ └── __init__.js │ ├── cgi.py │ ├── cgitb.py │ ├── chunk.py │ ├── cmd.py │ ├── code.py │ ├── codecs.py │ ├── codeop.py │ ├── collections.js │ ├── colorsys.py │ ├── commands.py │ ├── compileall.py │ ├── compiler │ │ └── __init__.py │ ├── config │ │ └── __init__.py │ ├── contextlib.py │ ├── cookielib.py │ ├── copy.py │ ├── copy_reg.py │ ├── csv.py │ ├── ctypes │ │ ├── __init__.py │ │ └── macholib │ │ │ └── __init__.py │ ├── curses │ │ └── __init__.py │ ├── datetime.js │ ├── dbhash.py │ ├── decimal.py │ ├── difflib.py │ ├── dircache.py │ ├── dis.py │ ├── distutils │ │ ├── __init__.py │ │ ├── command │ │ │ └── __init__.py │ │ └── tests │ │ │ └── __init__.py │ ├── doctest.py │ ├── document.js │ ├── dumbdbm.py │ ├── dummy_thread.py │ ├── dummy_threading.py │ ├── email │ │ ├── __init__.py │ │ ├── mime │ │ │ └── __init__.py │ │ └── test │ │ │ └── data │ │ │ └── __init__.py │ ├── encodings │ │ └── __init__.py │ ├── filecmp.py │ ├── fileinput.py │ ├── fnmatch.py │ ├── formatter.py │ ├── fpformat.py │ ├── fractions.js │ ├── fractions.py │ ├── ftplib.py │ ├── functools.js │ ├── genericpath.py │ ├── getopt.py │ ├── getpass.py │ ├── gettext.py │ ├── glob.py │ ├── gzip.py │ ├── hashlib.py │ ├── heapq.py │ ├── hmac.py │ ├── hotshot │ │ └── __init__.py │ ├── htmlentitydefs.py │ ├── htmllib.py │ ├── httplib.py │ ├── idlelib │ │ ├── Icons │ │ │ └── __init__.py │ │ └── __init__.py │ ├── ihooks.py │ ├── image.js │ ├── imaplib.py │ ├── imghdr.py │ ├── imputil.py │ ├── io.py │ ├── itertools.js │ ├── json.js │ ├── json │ │ ├── __init__.js │ │ └── stringify.js │ ├── keyword.js │ ├── lib-dynload │ │ └── __init__.py │ ├── lib-tk │ │ └── __init__.py │ ├── lib2to3 │ │ ├── __init__.py │ │ ├── fixes │ │ │ └── __init__.py │ │ ├── pgen2 │ │ │ └── __init__.py │ │ └── tests │ │ │ └── __init__.py │ ├── linecache.py │ ├── locale.py │ ├── logging │ │ └── __init__.py │ ├── macpath.py │ ├── macurl2path.py │ ├── mailbox.py │ ├── mailcap.py │ ├── markupbase.py │ ├── math.js │ ├── md5.py │ ├── mhlib.py │ ├── mimetools.py │ ├── mimetypes.py │ ├── mimify.py │ ├── modulefinder.py │ ├── multifile.py │ ├── multiprocessing │ │ ├── __init__.py │ │ └── dummy │ │ │ └── __init__.py │ ├── mutex.py │ ├── netrc.py │ ├── new.py │ ├── nntplib.py │ ├── ntpath.py │ ├── nturl2path.py │ ├── numbers.py │ ├── opcode.py │ ├── operator.js │ ├── optparse.py │ ├── os.py │ ├── os2emxpath.py │ ├── pdb.py │ ├── pickle.py │ ├── pickletools.py │ ├── pipes.py │ ├── pkgutil.py │ ├── platform.js │ ├── platform.py │ ├── plistlib.py │ ├── popen2.py │ ├── poplib.py │ ├── posixfile.py │ ├── posixpath.py │ ├── pprint.py │ ├── processing.js │ ├── profile.py │ ├── pstats.py │ ├── pty.py │ ├── py_compile.py │ ├── pyclbr.py │ ├── pydoc.py │ ├── pydoc_topics.py │ ├── pythonds │ │ ├── __init__.py │ │ ├── basic │ │ │ ├── __init__.py │ │ │ ├── deque.py │ │ │ ├── queue.py │ │ │ └── stack.py │ │ ├── graphs │ │ │ ├── __init__.py │ │ │ ├── adjGraph.py │ │ │ └── priorityQueue.py │ │ └── trees │ │ │ ├── __init__.py │ │ │ ├── balance.py │ │ │ ├── binaryTree.py │ │ │ ├── binheap.py │ │ │ └── bst.py │ ├── pythonds3 │ │ ├── __init__.py │ │ ├── basic │ │ │ ├── __init__.py │ │ │ ├── deque.py │ │ │ ├── linked_list.py │ │ │ ├── queue.py │ │ │ └── stack.py │ │ ├── graphs │ │ │ ├── __init__.py │ │ │ └── adjacency_graph.py │ │ ├── intro │ │ │ ├── __init__.py │ │ │ └── oop.py │ │ ├── searching │ │ │ ├── __init__.py │ │ │ └── hash_table.py │ │ ├── sorting │ │ │ ├── __init__.py │ │ │ └── sorting_algorithms.py │ │ └── trees │ │ │ ├── __init__.py │ │ │ ├── avl_tree.py │ │ │ ├── binary_heap.py │ │ │ ├── binary_search_tree.py │ │ │ ├── binary_tree.py │ │ │ └── priority_queue.py │ ├── pythoned │ │ ├── __init__.py │ │ ├── arboles │ │ │ ├── __init__.py │ │ │ ├── abb.py │ │ │ ├── arbolBinario.py │ │ │ ├── avl.py │ │ │ └── monticuloBinario.py │ │ ├── basicas │ │ │ ├── __init__.py │ │ │ ├── cola.py │ │ │ ├── coladoble.py │ │ │ └── pila.py │ │ └── grafos │ │ │ ├── __init__.py │ │ │ ├── colaPrioridad.py │ │ │ └── grafoAdy.py │ ├── quopri.py │ ├── random.py │ ├── re.js │ ├── repr.py │ ├── requests.py │ ├── requests_with_caching.py │ ├── rexec.py │ ├── rfc822.py │ ├── rlcompleter.py │ ├── robotparser.py │ ├── runpy.py │ ├── sched.py │ ├── sets.py │ ├── sgmllib.py │ ├── sha.py │ ├── shelve.py │ ├── shlex.py │ ├── shutil.py │ ├── signal.js │ ├── site.py │ ├── smtpd.py │ ├── smtplib.py │ ├── sndhdr.py │ ├── socket.py │ ├── sqlite3 │ │ └── __init__.py │ ├── sre.py │ ├── sre_compile.py │ ├── sre_constants.py │ ├── sre_parse.py │ ├── ssl.py │ ├── stat.py │ ├── statistics.py │ ├── statvfs.py │ ├── string.js │ ├── stringold.py │ ├── stringprep.py │ ├── struct.py │ ├── subprocess.py │ ├── sunau.py │ ├── sunaudio.py │ ├── symbol.py │ ├── symtable.py │ ├── tabnanny.py │ ├── tarfile.py │ ├── telnetlib.py │ ├── tempfile.py │ ├── test │ │ ├── __init__.py │ │ ├── ann_module.py │ │ ├── ann_module2.py │ │ ├── ann_module3.py │ │ ├── bad_getattr.py │ │ ├── bad_getattr2.py │ │ ├── bad_getattr3.py │ │ ├── decimaltestdata │ │ │ └── __init__.py │ │ ├── good_getattr.py │ │ └── test_support.py │ ├── textwrap.py │ ├── this.py │ ├── threading.py │ ├── time.js │ ├── timeit.py │ ├── toaiff.py │ ├── token.js │ ├── tokenize.js │ ├── trace.py │ ├── traceback.py │ ├── tty.py │ ├── turtle.js │ ├── types.py │ ├── unittest │ │ ├── __init__.py │ │ └── gui.py │ ├── urllib │ │ ├── __init__.js │ │ └── request │ │ │ └── __init__.js │ ├── urllib2.py │ ├── urlparse.py │ ├── user.py │ ├── uu.py │ ├── uuid.js │ ├── warnings.py │ ├── wave.py │ ├── weakref.py │ ├── webbrowser.js │ ├── webgl │ │ ├── __init__.js │ │ ├── math.js │ │ ├── matrix4.js │ │ ├── models.js │ │ └── primitives.js │ ├── whichdb.py │ ├── wsgiref │ │ └── __init__.py │ ├── xdrlib.py │ ├── xml │ │ ├── __init__.py │ │ ├── dom │ │ │ └── __init__.py │ │ ├── etree │ │ │ └── __init__.py │ │ ├── parsers │ │ │ └── __init__.py │ │ └── sax │ │ │ └── __init__.py │ ├── xmllib.py │ ├── xmlrpclib.py │ └── zipfile.py ├── list.js ├── main.js ├── map.js ├── mappingproxy.js ├── method.js ├── misceval.js ├── module.js ├── nonetype.js ├── object.js ├── parser.js ├── pgen │ ├── ast │ │ ├── Python.asdl │ │ ├── asdl.py │ │ ├── asdl_js.py │ │ └── spark.py │ ├── parser │ │ ├── Grammar.txt │ │ ├── grammar.py │ │ ├── main.py │ │ ├── pgen.py │ │ ├── token.py │ │ └── tokenize.py │ └── readme_skulpt.txt ├── print.js ├── property_class_static.js ├── range.js ├── reversed.js ├── set.js ├── simple_iterators.js ├── sk_method.js ├── slice.js ├── slotdefs.js ├── str.js ├── structseq.js ├── super.js ├── symtable.js ├── timsort.js ├── token.js ├── tokenize.js ├── tuple.js ├── type.js ├── util.js └── zip.js ├── stdlibstubs.py ├── support ├── build │ ├── copy2docs.js │ ├── help.js │ ├── regenparser.js │ └── wrapmodules.js ├── closure-wrap-gen │ ├── jsdoc-toolkit │ │ ├── README.txt │ │ ├── app │ │ │ ├── frame.js │ │ │ ├── frame │ │ │ │ ├── Chain.js │ │ │ │ ├── Dumper.js │ │ │ │ ├── Hash.js │ │ │ │ ├── Link.js │ │ │ │ ├── Namespace.js │ │ │ │ ├── Opt.js │ │ │ │ ├── Reflection.js │ │ │ │ ├── String.js │ │ │ │ └── Testrun.js │ │ │ ├── handlers │ │ │ │ ├── FOODOC.js │ │ │ │ ├── XMLDOC.js │ │ │ │ └── XMLDOC │ │ │ │ │ ├── DomReader.js │ │ │ │ │ ├── XMLDoc.js │ │ │ │ │ └── XMLParse.js │ │ │ ├── lib │ │ │ │ ├── JSDOC.js │ │ │ │ └── JSDOC │ │ │ │ │ ├── DocComment.js │ │ │ │ │ ├── DocTag.js │ │ │ │ │ ├── JsDoc.js │ │ │ │ │ ├── JsPlate.js │ │ │ │ │ ├── Lang.js │ │ │ │ │ ├── Parser.js │ │ │ │ │ ├── PluginManager.js │ │ │ │ │ ├── Symbol.js │ │ │ │ │ ├── SymbolSet.js │ │ │ │ │ ├── TextStream.js │ │ │ │ │ ├── Token.js │ │ │ │ │ ├── TokenReader.js │ │ │ │ │ ├── TokenStream.js │ │ │ │ │ ├── Util.js │ │ │ │ │ └── Walker.js │ │ │ ├── main.js │ │ │ ├── plugins │ │ │ │ ├── commentSrcJson.js │ │ │ │ ├── frameworkPrototype.js │ │ │ │ ├── functionCall.js │ │ │ │ ├── publishSrcHilite.js │ │ │ │ ├── symbolLink.js │ │ │ │ ├── tagParamConfig.js │ │ │ │ └── tagSynonyms.js │ │ │ ├── run.js │ │ │ ├── t │ │ │ │ ├── TestDoc.js │ │ │ │ └── runner.js │ │ │ ├── test.js │ │ │ └── test │ │ │ │ ├── addon.js │ │ │ │ ├── anon_inner.js │ │ │ │ ├── augments.js │ │ │ │ ├── augments2.js │ │ │ │ ├── borrows.js │ │ │ │ ├── borrows2.js │ │ │ │ ├── config.js │ │ │ │ ├── constructs.js │ │ │ │ ├── encoding.js │ │ │ │ ├── encoding_other.js │ │ │ │ ├── event.js │ │ │ │ ├── exports.js │ │ │ │ ├── functions_anon.js │ │ │ │ ├── functions_nested.js │ │ │ │ ├── global.js │ │ │ │ ├── globals.js │ │ │ │ ├── ignore.js │ │ │ │ ├── inner.js │ │ │ │ ├── jsdoc_test.js │ │ │ │ ├── lend.js │ │ │ │ ├── memberof.js │ │ │ │ ├── memberof2.js │ │ │ │ ├── memberof3.js │ │ │ │ ├── memberof_constructor.js │ │ │ │ ├── module.js │ │ │ │ ├── multi_methods.js │ │ │ │ ├── name.js │ │ │ │ ├── namespace_nested.js │ │ │ │ ├── nocode.js │ │ │ │ ├── oblit_anon.js │ │ │ │ ├── overview.js │ │ │ │ ├── param_inline.js │ │ │ │ ├── params_optional.js │ │ │ │ ├── prototype.js │ │ │ │ ├── prototype_nested.js │ │ │ │ ├── prototype_oblit.js │ │ │ │ ├── prototype_oblit_constructor.js │ │ │ │ ├── public.js │ │ │ │ ├── scripts │ │ │ │ ├── code.js │ │ │ │ └── notcode.txt │ │ │ │ ├── shared.js │ │ │ │ ├── shared2.js │ │ │ │ ├── shortcuts.js │ │ │ │ ├── static_this.js │ │ │ │ ├── synonyms.js │ │ │ │ ├── tosource.js │ │ │ │ └── variable_redefine.js │ │ ├── changes.txt │ │ ├── conf │ │ │ └── sample.conf │ │ ├── java │ │ │ ├── build.xml │ │ │ ├── build_1.4.xml │ │ │ ├── classes │ │ │ │ └── js.jar │ │ │ └── src │ │ │ │ ├── JsDebugRun.java │ │ │ │ └── JsRun.java │ │ ├── jsdebug.jar │ │ ├── jsrun.jar │ │ ├── jsrun.sh │ │ └── templates │ │ │ └── jsdoc │ │ │ ├── allclasses.tmpl │ │ │ ├── allfiles.tmpl │ │ │ ├── class.tmpl │ │ │ ├── index.tmpl │ │ │ ├── publish.js │ │ │ ├── static │ │ │ ├── default.css │ │ │ ├── header.html │ │ │ └── index.html │ │ │ └── symbol.tmpl │ ├── readme.txt │ └── skulptwrap │ │ └── publish.js ├── externs │ ├── node-buffers.js │ ├── node-events.js │ ├── node-process.js │ ├── node-streams.js │ └── sk.js ├── jsbeautify │ └── beautify.js ├── jslint │ ├── d8.js │ ├── fulljslint.js │ ├── readme_skulpt.txt │ └── wrapper.py ├── polyfills │ ├── JSBI.js │ ├── Unicode.js │ └── es6.js ├── run │ ├── brun.js │ ├── btestrunner.js │ ├── require-skulpt.js │ ├── run_template.ejs │ ├── runfile.js │ └── test_template.ejs ├── san-angeles │ ├── README.txt │ ├── sanangeles.py │ └── source │ │ ├── README.txt │ │ ├── SanOGLES.dsp │ │ ├── SanOGLES.dsw │ │ ├── app-linux.c │ │ ├── app-win32.c │ │ ├── app.h │ │ ├── build.sh │ │ ├── cams.h │ │ ├── demo.c │ │ ├── importgl.c │ │ ├── importgl.h │ │ ├── include │ │ └── GLES │ │ │ ├── egl.h │ │ │ ├── egltypes.h │ │ │ └── gl.h │ │ ├── license-BSD.txt │ │ ├── license-LGPL.txt │ │ ├── license.txt │ │ └── shapes.h └── setImmediate │ └── setImmediate.js ├── test ├── astppdump.py ├── bench │ ├── binary-trees.py │ └── mandelbrot.py ├── browser-detect.js ├── browser-stubs.js ├── closure │ ├── t00.py │ └── t00.py.real ├── footer_test.js ├── interactive │ ├── t00.py │ ├── t00.py.real │ ├── t01.py │ ├── t01.py.real │ ├── t02.py │ ├── t02.py.real │ ├── t03.py │ ├── t03.py.real │ ├── t04.py.disabled │ ├── t04.py.real │ ├── t04.py.real.force │ ├── t05.py │ ├── t05.py.real │ ├── t06.py.disabled │ └── t06.py.real ├── json2.js ├── no_new_globals.js ├── no_new_globals_at_end.js ├── parse │ ├── t00.expect │ ├── t00.py │ ├── t01.expect │ ├── t01.py │ ├── t02.expect │ ├── t02.py │ ├── t03.expect │ └── t03.py ├── py │ ├── readme.txt │ ├── test │ │ ├── seq_tests.py │ │ └── test_support.py │ ├── test_grammar.py │ ├── test_tuple.py │ └── unittest.py ├── run │ ├── pkga │ │ ├── __init__.py │ │ └── pkgb │ │ │ ├── __init__.py │ │ │ └── modc.py │ ├── t00.py │ ├── t00.py.real │ ├── t00.py.symtab │ ├── t00.trans │ ├── t01.py │ ├── t01.py.real │ ├── t01.py.symtab │ ├── t01.trans │ ├── t02.py │ ├── t02.py.real │ ├── t02.py.symtab │ ├── t02.trans │ ├── t03.py │ ├── t03.py.real │ ├── t03.py.symtab │ ├── t03.trans │ ├── t04.py │ ├── t04.py.real │ ├── t04.py.symtab │ ├── t04.trans │ ├── t05.py │ ├── t05.py.real │ ├── t05.py.symtab │ ├── t05.trans │ ├── t06.py │ ├── t06.py.real │ ├── t06.py.symtab │ ├── t06.trans │ ├── t07.py │ ├── t07.py.real │ ├── t07.py.symtab │ ├── t07.trans │ ├── t08.py │ ├── t08.py.real │ ├── t08.py.symtab │ ├── t08.trans │ ├── t09.py │ ├── t09.py.real │ ├── t09.py.symtab │ ├── t09.trans │ ├── t10.py │ ├── t10.py.real │ ├── t10.py.symtab │ ├── t10.trans │ ├── t100.py │ ├── t100.py.real │ ├── t100.py.symtab │ ├── t100.trans │ ├── t101.py │ ├── t101.py.real │ ├── t101.py.symtab │ ├── t101.trans │ ├── t102.py │ ├── t102.py.real │ ├── t102.py.symtab │ ├── t102.trans │ ├── t103.py │ ├── t103.py.real │ ├── t103.py.symtab │ ├── t103.trans │ ├── t104.py │ ├── t104.py.real │ ├── t104.py.symtab │ ├── t104.trans │ ├── t105.py │ ├── t105.py.real │ ├── t105.py.symtab │ ├── t105.trans │ ├── t106.py │ ├── t106.py.real │ ├── t106.py.symtab │ ├── t106.trans │ ├── t107.py │ ├── t107.py.real │ ├── t107.py.symtab │ ├── t107.trans │ ├── t108.py │ ├── t108.py.real │ ├── t108.py.symtab │ ├── t108.trans │ ├── t109.py │ ├── t109.py.real │ ├── t109.py.symtab │ ├── t109.trans │ ├── t11.py │ ├── t11.py.real │ ├── t11.py.symtab │ ├── t11.trans │ ├── t110.py │ ├── t110.py.real │ ├── t110.py.symtab │ ├── t110.trans │ ├── t111.py │ ├── t111.py.real │ ├── t111.py.symtab │ ├── t111.trans │ ├── t112.py │ ├── t112.py.real │ ├── t112.py.symtab │ ├── t112.trans │ ├── t113.py │ ├── t113.py.real │ ├── t113.py.symtab │ ├── t113.trans │ ├── t114.py │ ├── t114.py.real │ ├── t114.py.symtab │ ├── t114.trans │ ├── t115.py │ ├── t115.py.real │ ├── t115.py.symtab │ ├── t115.trans │ ├── t116.py │ ├── t116.py.real │ ├── t116.py.symtab │ ├── t116.trans │ ├── t117.py │ ├── t117.py.real │ ├── t117.py.symtab │ ├── t117.trans │ ├── t118.py │ ├── t118.py.real │ ├── t118.py.symtab │ ├── t118.trans │ ├── t119.py │ ├── t119.py.real │ ├── t119.py.symtab │ ├── t119.trans │ ├── t12.py │ ├── t12.py.real │ ├── t12.py.symtab │ ├── t12.trans │ ├── t120.py │ ├── t120.py.real │ ├── t120.py.symtab │ ├── t120.trans │ ├── t121.py │ ├── t121.py.real │ ├── t121.py.symtab │ ├── t121.trans │ ├── t122.py │ ├── t122.py.real │ ├── t122.py.symtab │ ├── t122.trans │ ├── t123.py │ ├── t123.py.real │ ├── t123.py.symtab │ ├── t123.trans │ ├── t124.py │ ├── t124.py.real │ ├── t124.py.symtab │ ├── t124.trans │ ├── t125.py │ ├── t125.py.real │ ├── t125.py.symtab │ ├── t125.trans │ ├── t126.py │ ├── t126.py.real │ ├── t126.py.symtab │ ├── t126.trans │ ├── t127.py │ ├── t127.py.real │ ├── t127.py.symtab │ ├── t127.trans │ ├── t128.py │ ├── t128.py.real │ ├── t128.py.symtab │ ├── t128.trans │ ├── t129.py │ ├── t129.py.real │ ├── t129.py.symtab │ ├── t129.trans │ ├── t13.py │ ├── t13.py.real │ ├── t13.py.symtab │ ├── t13.trans │ ├── t130.py │ ├── t130.py.real │ ├── t130.py.symtab │ ├── t130.trans │ ├── t131.py.disabled │ ├── t131.py.real │ ├── t131.py.symtab │ ├── t131.trans │ ├── t132.py │ ├── t132.py.real │ ├── t132.py.symtab │ ├── t132.trans │ ├── t133.py │ ├── t133.py.real │ ├── t133.py.real.force │ ├── t133.py.symtab │ ├── t133.trans │ ├── t134.py │ ├── t134.py.real │ ├── t134.py.symtab │ ├── t134.trans │ ├── t135.py │ ├── t135.py.real │ ├── t135.py.symtab │ ├── t135.trans │ ├── t136.py │ ├── t136.py.real │ ├── t136.py.symtab │ ├── t136.trans │ ├── t137.py │ ├── t137.py.real │ ├── t137.py.symtab │ ├── t137.trans │ ├── t138.py │ ├── t138.py.real │ ├── t138.py.symtab │ ├── t138.trans │ ├── t139.py │ ├── t139.py.real │ ├── t139.py.symtab │ ├── t139.trans │ ├── t14.py │ ├── t14.py.real │ ├── t14.py.symtab │ ├── t14.trans │ ├── t140.py │ ├── t140.py.real │ ├── t140.py.symtab │ ├── t140.trans │ ├── t141.py │ ├── t141.py.real │ ├── t141.py.symtab │ ├── t141.trans │ ├── t142.py │ ├── t142.py.real │ ├── t142.py.symtab │ ├── t142.trans │ ├── t143.py │ ├── t143.py.real │ ├── t143.py.symtab │ ├── t143.trans │ ├── t144.py │ ├── t144.py.real │ ├── t144.py.symtab │ ├── t144.trans │ ├── t145.py │ ├── t145.py.real │ ├── t145.py.symtab │ ├── t145.trans │ ├── t146.py │ ├── t146.py.real │ ├── t146.py.symtab │ ├── t146.trans │ ├── t147.py │ ├── t147.py.real │ ├── t147.py.symtab │ ├── t147.trans │ ├── t148.py │ ├── t148.py.real │ ├── t148.py.symtab │ ├── t148.trans │ ├── t149.py │ ├── t149.py.real │ ├── t149.py.symtab │ ├── t149.trans │ ├── t15.py │ ├── t15.py.real │ ├── t15.py.symtab │ ├── t15.trans │ ├── t150.py │ ├── t150.py.real │ ├── t150.py.symtab │ ├── t150.trans │ ├── t151.py │ ├── t151.py.real │ ├── t151.py.symtab │ ├── t151.trans │ ├── t152.py │ ├── t152.py.real │ ├── t152.py.symtab │ ├── t152.trans │ ├── t153.py │ ├── t153.py.real │ ├── t153.py.symtab │ ├── t153.trans │ ├── t154.py │ ├── t154.py.real │ ├── t154.py.symtab │ ├── t154.trans │ ├── t155.py │ ├── t155.py.real │ ├── t155.py.symtab │ ├── t155.trans │ ├── t156.py │ ├── t156.py.real │ ├── t156.py.symtab │ ├── t156.trans │ ├── t157.py │ ├── t157.py.real │ ├── t157.py.real.force │ ├── t157.py.symtab │ ├── t157.trans │ ├── t158.py │ ├── t158.py.real │ ├── t158.py.symtab │ ├── t158.trans │ ├── t159.py │ ├── t159.py.real │ ├── t159.py.real.force │ ├── t159.py.symtab │ ├── t159.trans │ ├── t16.py │ ├── t16.py.real │ ├── t16.py.symtab │ ├── t16.trans │ ├── t160.py │ ├── t160.py.real │ ├── t160.py.symtab │ ├── t160.trans │ ├── t161.py │ ├── t161.py.real │ ├── t161.py.symtab │ ├── t161.trans │ ├── t162.py │ ├── t162.py.real │ ├── t162.py.symtab │ ├── t162.trans │ ├── t163.py │ ├── t163.py.real │ ├── t163.py.symtab │ ├── t163.trans │ ├── t164.py │ ├── t164.py.real │ ├── t164.py.symtab │ ├── t164.trans │ ├── t165.py │ ├── t165.py.real │ ├── t165.py.symtab │ ├── t165.trans │ ├── t166.py │ ├── t166.py.real │ ├── t166.py.symtab │ ├── t166.trans │ ├── t167.py │ ├── t167.py.real │ ├── t167.py.symtab │ ├── t167.trans │ ├── t168.py │ ├── t168.py.real │ ├── t168.py.symtab │ ├── t168.trans │ ├── t169.py │ ├── t169.py.real │ ├── t169.py.symtab │ ├── t169.trans │ ├── t17.py │ ├── t17.py.real │ ├── t17.py.symtab │ ├── t17.trans │ ├── t170.py │ ├── t170.py.real │ ├── t170.py.symtab │ ├── t170.trans │ ├── t170.trans.force │ ├── t171.py │ ├── t171.py.real │ ├── t171.py.symtab │ ├── t171.trans │ ├── t172.py │ ├── t172.py.real │ ├── t172.py.symtab │ ├── t172.trans │ ├── t173.py │ ├── t173.py.real │ ├── t173.py.symtab │ ├── t173.trans │ ├── t174.py │ ├── t174.py.real │ ├── t174.py.symtab │ ├── t174.trans │ ├── t174.trans.force │ ├── t175.py │ ├── t175.py.real │ ├── t175.py.symtab │ ├── t175.trans │ ├── t176.py │ ├── t176.py.real │ ├── t176.py.symtab │ ├── t176.trans │ ├── t177.py │ ├── t177.py.real │ ├── t177.py.symtab │ ├── t177.trans │ ├── t178.py │ ├── t178.py.real │ ├── t178.py.symtab │ ├── t178.trans │ ├── t179.py │ ├── t179.py.real │ ├── t179.py.symtab │ ├── t179.trans │ ├── t18.py │ ├── t18.py.real │ ├── t18.py.symtab │ ├── t18.trans │ ├── t180.py │ ├── t180.py.real │ ├── t180.py.symtab │ ├── t180.trans │ ├── t181.py │ ├── t181.py.real │ ├── t181.py.symtab │ ├── t181.trans │ ├── t182.py │ ├── t182.py.real │ ├── t182.py.symtab │ ├── t182.trans │ ├── t183.py │ ├── t183.py.real │ ├── t183.py.symtab │ ├── t183.trans │ ├── t184.py │ ├── t184.py.real │ ├── t184.py.symtab │ ├── t184.trans │ ├── t185.py │ ├── t185.py.real │ ├── t185.py.symtab │ ├── t185.trans │ ├── t186.py │ ├── t186.py.real │ ├── t186.py.symtab │ ├── t186.trans │ ├── t187.py │ ├── t187.py.real │ ├── t187.py.symtab │ ├── t187.trans │ ├── t188.py │ ├── t188.py.real │ ├── t188.py.symtab │ ├── t188.trans │ ├── t189.py │ ├── t189.py.real │ ├── t189.py.symtab │ ├── t189.trans │ ├── t19.py │ ├── t19.py.real │ ├── t19.py.symtab │ ├── t19.trans │ ├── t190.py │ ├── t190.py.real │ ├── t190.py.symtab │ ├── t190.trans │ ├── t191.py │ ├── t191.py.real │ ├── t191.py.symtab │ ├── t191.trans │ ├── t192.py │ ├── t192.py.real │ ├── t192.py.symtab │ ├── t192.trans │ ├── t193.py │ ├── t193.py.real │ ├── t193.py.symtab │ ├── t193.trans │ ├── t194.py │ ├── t194.py.real │ ├── t194.py.real.force │ ├── t194.py.symtab │ ├── t194.trans │ ├── t195.py │ ├── t195.py.real │ ├── t195.py.symtab │ ├── t195.trans │ ├── t196.py │ ├── t196.py.real │ ├── t196.py.symtab │ ├── t196.trans │ ├── t197.py │ ├── t197.py.real │ ├── t197.py.symtab │ ├── t197.trans │ ├── t198.py │ ├── t198.py.real │ ├── t198.py.symtab │ ├── t198.trans │ ├── t199.py │ ├── t199.py.real │ ├── t199.py.symtab │ ├── t199.trans │ ├── t20.py │ ├── t20.py.real │ ├── t20.py.symtab │ ├── t20.trans │ ├── t200.py │ ├── t200.py.real │ ├── t200.py.symtab │ ├── t200.trans │ ├── t201.py │ ├── t201.py.real │ ├── t201.py.symtab │ ├── t201.trans │ ├── t202.py │ ├── t202.py.real │ ├── t202.py.symtab │ ├── t202.trans │ ├── t203.py │ ├── t203.py.real │ ├── t203.py.symtab │ ├── t203.trans │ ├── t204.py │ ├── t204.py.real │ ├── t204.py.symtab │ ├── t204.trans │ ├── t205.py │ ├── t205.py.real │ ├── t205.py.symtab │ ├── t205.trans │ ├── t206.py │ ├── t206.py.real │ ├── t206.py.symtab │ ├── t206.trans │ ├── t207.py │ ├── t207.py.real │ ├── t207.py.symtab │ ├── t207.trans │ ├── t208.py │ ├── t208.py.real │ ├── t208.py.symtab │ ├── t208.trans │ ├── t209.py │ ├── t209.py.real │ ├── t209.py.symtab │ ├── t209.trans │ ├── t21.py │ ├── t21.py.real │ ├── t21.py.symtab │ ├── t21.trans │ ├── t210.py │ ├── t210.py.real │ ├── t210.py.symtab │ ├── t210.trans │ ├── t211.py │ ├── t211.py.real │ ├── t211.py.symtab │ ├── t211.trans │ ├── t212.py │ ├── t212.py.real │ ├── t212.py.symtab │ ├── t212.trans │ ├── t213.py │ ├── t213.py.real │ ├── t213.py.symtab │ ├── t213.trans │ ├── t214.py │ ├── t214.py.real │ ├── t214.py.symtab │ ├── t214.trans │ ├── t215.py │ ├── t215.py.real │ ├── t215.py.symtab │ ├── t215.trans │ ├── t216.py │ ├── t216.py.real │ ├── t216.py.symtab │ ├── t216.trans │ ├── t217.py │ ├── t217.py.real │ ├── t217.py.symtab │ ├── t217.trans │ ├── t218.py │ ├── t218.py.real │ ├── t218.py.real.force │ ├── t218.py.symtab │ ├── t218.trans │ ├── t219.py │ ├── t219.py.real │ ├── t219.py.symtab │ ├── t219.trans │ ├── t22.py │ ├── t22.py.real │ ├── t22.py.symtab │ ├── t22.trans │ ├── t220.py │ ├── t220.py.real │ ├── t220.py.symtab │ ├── t220.trans │ ├── t221.py │ ├── t221.py.real │ ├── t221.py.symtab │ ├── t221.trans │ ├── t221_sub.py │ ├── t221_sub.py.real │ ├── t221_sub.py.symtab │ ├── t221_sub.trans │ ├── t222.py │ ├── t222.py.real │ ├── t222.py.symtab │ ├── t222.trans │ ├── t223.py │ ├── t223.py.real │ ├── t223.py.symtab │ ├── t223.trans │ ├── t224.py │ ├── t224.py.real │ ├── t224.py.symtab │ ├── t224.trans │ ├── t225.py │ ├── t225.py.real │ ├── t225.py.symtab │ ├── t225.trans │ ├── t226.py │ ├── t226.py.real │ ├── t226.py.symtab │ ├── t226.trans │ ├── t227.py │ ├── t227.py.real │ ├── t227.py.symtab │ ├── t227.trans │ ├── t228.py │ ├── t228.py.real │ ├── t228.py.real.force │ ├── t228.py.symtab │ ├── t228.trans │ ├── t229.py │ ├── t229.py.real │ ├── t229.py.symtab │ ├── t229.trans │ ├── t23.py │ ├── t23.py.real │ ├── t23.py.symtab │ ├── t23.trans │ ├── t230.py │ ├── t230.py.real │ ├── t230.py.symtab │ ├── t230.trans │ ├── t231.py │ ├── t231.py.real │ ├── t231.py.real.force │ ├── t231.py.symtab │ ├── t231.trans │ ├── t232.py │ ├── t232.py.real │ ├── t232.py.symtab │ ├── t232.trans │ ├── t233.py │ ├── t233.py.real │ ├── t233.py.symtab │ ├── t233.trans │ ├── t234.py │ ├── t234.py.real │ ├── t234.py.symtab │ ├── t234.trans │ ├── t235.py │ ├── t235.py.real │ ├── t235.py.symtab │ ├── t235.trans │ ├── t236.py │ ├── t236.py.real │ ├── t236.py.symtab │ ├── t236.trans │ ├── t237.py │ ├── t237.py.real │ ├── t237.py.symtab │ ├── t237.trans │ ├── t238.py │ ├── t238.py.real │ ├── t238.py.symtab │ ├── t238.trans │ ├── t239.py │ ├── t239.py.real │ ├── t239.py.symtab │ ├── t239.trans │ ├── t24.py │ ├── t24.py.real │ ├── t24.py.symtab │ ├── t24.trans │ ├── t240.py │ ├── t240.py.real │ ├── t240.py.symtab │ ├── t240.trans │ ├── t241.py │ ├── t241.py.real │ ├── t241.py.symtab │ ├── t241.trans │ ├── t242.py │ ├── t242.py.real │ ├── t242.py.symtab │ ├── t242.trans │ ├── t243.py │ ├── t243.py.real │ ├── t243.py.symtab │ ├── t243.trans │ ├── t244.py │ ├── t244.py.real │ ├── t244.py.symtab │ ├── t244.trans │ ├── t245.py │ ├── t245.py.real │ ├── t245.py.symtab │ ├── t245.trans │ ├── t246.py │ ├── t246.py.real │ ├── t246.py.symtab │ ├── t246.trans │ ├── t247.py │ ├── t247.py.real │ ├── t247.py.real.force │ ├── t247.py.symtab │ ├── t247.trans │ ├── t248.py │ ├── t248.py.real │ ├── t248.py.symtab │ ├── t248.trans │ ├── t249.py │ ├── t249.py.real │ ├── t249.py.symtab │ ├── t249.trans │ ├── t25.py │ ├── t25.py.real │ ├── t25.py.symtab │ ├── t25.trans │ ├── t250.py │ ├── t250.py.real │ ├── t250.py.symtab │ ├── t250.trans │ ├── t251.py │ ├── t251.py.real │ ├── t251.py.symtab │ ├── t251.trans │ ├── t252.py │ ├── t252.py.real │ ├── t252.py.symtab │ ├── t252.trans │ ├── t253.py │ ├── t253.py.real │ ├── t253.py.symtab │ ├── t253.trans │ ├── t254.py │ ├── t254.py.real │ ├── t254.py.symtab │ ├── t254.trans │ ├── t255.py │ ├── t255.py.real │ ├── t255.py.symtab │ ├── t255.trans │ ├── t256.py │ ├── t256.py.real │ ├── t256.py.symtab │ ├── t256.trans │ ├── t257.py │ ├── t257.py.real │ ├── t257.py.symtab │ ├── t257.trans │ ├── t258.py │ ├── t258.py.real │ ├── t258.py.symtab │ ├── t258.trans │ ├── t259.py │ ├── t259.py.real │ ├── t259.py.symtab │ ├── t259.trans │ ├── t26.py │ ├── t26.py.real │ ├── t26.py.symtab │ ├── t26.trans │ ├── t260.py │ ├── t260.py.real │ ├── t260.py.symtab │ ├── t260.trans │ ├── t261.py │ ├── t261.py.real │ ├── t261.py.symtab │ ├── t261.trans │ ├── t262.py │ ├── t262.py.real │ ├── t262.py.symtab │ ├── t262.trans │ ├── t263.py │ ├── t263.py.real │ ├── t263.py.symtab │ ├── t263.trans │ ├── t264.py │ ├── t264.py.real │ ├── t264.py.symtab │ ├── t264.trans │ ├── t265.py │ ├── t265.py.real │ ├── t265.py.symtab │ ├── t265.trans │ ├── t265.trans.force │ ├── t266.py │ ├── t266.py.real │ ├── t266.py.symtab │ ├── t266.trans │ ├── t267.py │ ├── t267.py.real │ ├── t267.py.symtab │ ├── t267.trans │ ├── t268.py │ ├── t268.py.real │ ├── t268.py.symtab │ ├── t268.trans │ ├── t269.py │ ├── t269.py.real │ ├── t269.py.symtab │ ├── t269.trans │ ├── t27.py │ ├── t27.py.real │ ├── t27.py.symtab │ ├── t27.trans │ ├── t270.py │ ├── t270.py.real │ ├── t270.py.symtab │ ├── t270.trans │ ├── t271.py │ ├── t271.py.real │ ├── t271.py.symtab │ ├── t271.trans │ ├── t271.trans.force │ ├── t272.py │ ├── t272.py.real │ ├── t272.py.symtab │ ├── t272.trans │ ├── t272.trans.force │ ├── t273.py │ ├── t273.py.real │ ├── t273.py.symtab │ ├── t273.trans │ ├── t274.py │ ├── t274.py.real │ ├── t274.py.real.force │ ├── t274.py.symtab │ ├── t274.trans │ ├── t275.py │ ├── t275.py.real │ ├── t275.py.real.force │ ├── t275.py.symtab │ ├── t275.trans │ ├── t276.py │ ├── t276.py.real │ ├── t276.py.real.force │ ├── t276.py.symtab │ ├── t276.trans │ ├── t277.py │ ├── t277.py.real │ ├── t277.py.symtab │ ├── t277.trans │ ├── t278.py │ ├── t278.py.real │ ├── t278.py.symtab │ ├── t278.trans │ ├── t279.py │ ├── t279.py.real │ ├── t279.py.symtab │ ├── t279.trans │ ├── t279_sub.py │ ├── t279_sub.py.real │ ├── t279_sub.py.symtab │ ├── t279_sub.trans │ ├── t28.py │ ├── t28.py.real │ ├── t28.py.symtab │ ├── t28.trans │ ├── t280.py │ ├── t280.py.real │ ├── t280.py.symtab │ ├── t280.trans │ ├── t281.py │ ├── t281.py.real │ ├── t281.py.symtab │ ├── t281.trans │ ├── t282.py │ ├── t282.py.real │ ├── t282.py.symtab │ ├── t282.trans │ ├── t283.py │ ├── t283.py.real │ ├── t283.py.symtab │ ├── t283.trans │ ├── t284.py │ ├── t284.py.real │ ├── t284.py.symtab │ ├── t284.trans │ ├── t285.py │ ├── t285.py.real │ ├── t285.py.symtab │ ├── t285.trans │ ├── t286.py │ ├── t286.py.real │ ├── t286.py.symtab │ ├── t286.trans │ ├── t287.py │ ├── t287.py.real │ ├── t287.py.symtab │ ├── t287.trans │ ├── t288.py │ ├── t288.py.real │ ├── t288.py.symtab │ ├── t288.trans │ ├── t289.py │ ├── t289.py.real │ ├── t289.py.real.force │ ├── t289.py.symtab │ ├── t289.trans │ ├── t29.py │ ├── t29.py.real │ ├── t29.py.symtab │ ├── t29.trans │ ├── t290.py │ ├── t290.py.real │ ├── t290.py.symtab │ ├── t290.trans │ ├── t290.trans.force │ ├── t291.py │ ├── t291.py.real │ ├── t291.py.symtab │ ├── t291.trans │ ├── t292.py │ ├── t292.py.real │ ├── t292.py.symtab │ ├── t292.trans │ ├── t293.py │ ├── t293.py.real │ ├── t293.py.symtab │ ├── t293.trans │ ├── t294.py │ ├── t294.py.real │ ├── t294.py.symtab │ ├── t294.trans │ ├── t295.py │ ├── t295.py.real │ ├── t295.py.symtab │ ├── t295.trans │ ├── t296.py │ ├── t296.py.real │ ├── t296.py.symtab │ ├── t296.trans │ ├── t297.py │ ├── t297.py.real │ ├── t297.py.symtab │ ├── t297.trans │ ├── t298.py │ ├── t298.py.real │ ├── t298.py.symtab │ ├── t298.trans │ ├── t299.py │ ├── t299.py.real │ ├── t299.py.symtab │ ├── t299.trans │ ├── t30.py │ ├── t30.py.real │ ├── t30.py.symtab │ ├── t30.trans │ ├── t300.py │ ├── t300.py.real │ ├── t300.py.symtab │ ├── t300.trans │ ├── t301.py │ ├── t301.py.real │ ├── t301.py.symtab │ ├── t301.trans │ ├── t302.py │ ├── t302.py.real │ ├── t302.py.symtab │ ├── t302.trans │ ├── t303.py │ ├── t303.py.real │ ├── t303.py.symtab │ ├── t303.trans │ ├── t304.py │ ├── t304.py.real │ ├── t304.py.symtab │ ├── t304.trans │ ├── t305.py │ ├── t305.py.real │ ├── t305.py.symtab │ ├── t305.trans │ ├── t306.py │ ├── t306.py.real │ ├── t306.py.symtab │ ├── t306.trans │ ├── t307.py │ ├── t307.py.real │ ├── t307.py.symtab │ ├── t307.trans │ ├── t308.py │ ├── t308.py.real │ ├── t308.py.symtab │ ├── t308.trans │ ├── t309.py │ ├── t309.py.real │ ├── t309.py.symtab │ ├── t309.trans │ ├── t31.py │ ├── t31.py.real │ ├── t31.py.symtab │ ├── t31.trans │ ├── t310.py │ ├── t310.py.real │ ├── t310.py.symtab │ ├── t310.trans │ ├── t311.py │ ├── t311.py.real │ ├── t311.py.symtab │ ├── t311.trans │ ├── t312.py │ ├── t312.py.real │ ├── t312.py.symtab │ ├── t312.trans │ ├── t313.py │ ├── t313.py.real │ ├── t313.py.symtab │ ├── t313.trans │ ├── t314.py │ ├── t314.py.real │ ├── t314.py.symtab │ ├── t314.trans │ ├── t315.py │ ├── t315.py.real │ ├── t315.py.symtab │ ├── t315.trans │ ├── t316.py │ ├── t316.py.real │ ├── t316.py.symtab │ ├── t316.trans │ ├── t317.py │ ├── t317.py.real │ ├── t317.py.symtab │ ├── t317.trans │ ├── t318.py │ ├── t318.py.real │ ├── t318.py.symtab │ ├── t318.trans │ ├── t319.py │ ├── t319.py.real │ ├── t319.py.symtab │ ├── t319.trans │ ├── t32.py │ ├── t32.py.real │ ├── t32.py.symtab │ ├── t32.trans │ ├── t320.py │ ├── t320.py.real │ ├── t320.py.symtab │ ├── t320.trans │ ├── t321.py │ ├── t321.py.real │ ├── t321.py.symtab │ ├── t321.trans │ ├── t322.py │ ├── t322.py.real │ ├── t322.py.symtab │ ├── t322.trans │ ├── t323.py │ ├── t323.py.real │ ├── t323.py.symtab │ ├── t323.trans │ ├── t324.py │ ├── t324.py.real │ ├── t324.py.symtab │ ├── t324.trans │ ├── t325.py │ ├── t325.py.real │ ├── t325.py.symtab │ ├── t325.trans │ ├── t326.py │ ├── t326.py.real │ ├── t326.py.symtab │ ├── t326.trans │ ├── t327.py │ ├── t327.py.real │ ├── t327.py.symtab │ ├── t327.trans │ ├── t328.py │ ├── t328.py.real │ ├── t328.py.symtab │ ├── t328.trans │ ├── t329.py │ ├── t329.py.real │ ├── t329.py.symtab │ ├── t329.trans │ ├── t33.py │ ├── t33.py.real │ ├── t33.py.symtab │ ├── t33.trans │ ├── t330.py │ ├── t330.py.real │ ├── t330.py.symtab │ ├── t330.trans │ ├── t331.py │ ├── t331.py.real │ ├── t331.py.symtab │ ├── t331.trans │ ├── t332.py │ ├── t332.py.real │ ├── t332.py.symtab │ ├── t332.trans │ ├── t333.py │ ├── t333.py.real │ ├── t333.py.symtab │ ├── t333.trans │ ├── t334.py │ ├── t334.py.real │ ├── t334.py.real.force │ ├── t334.py.symtab │ ├── t334.py.symtab.disabled │ ├── t334.trans │ ├── t334.trans.disabled │ ├── t335.py │ ├── t335.py.real │ ├── t335.py.symtab │ ├── t335.trans │ ├── t336.py │ ├── t336.py.real │ ├── t336.py.symtab │ ├── t336.trans │ ├── t337.py │ ├── t337.py.real │ ├── t337.py.symtab │ ├── t337.trans │ ├── t338.py │ ├── t338.py.real │ ├── t338.py.symtab │ ├── t338.trans │ ├── t339.py │ ├── t339.py.real │ ├── t339.py.symtab │ ├── t339.trans │ ├── t34.py │ ├── t34.py.real │ ├── t34.py.symtab │ ├── t34.trans │ ├── t340.py │ ├── t340.py.real │ ├── t340.py.symtab │ ├── t340.trans │ ├── t341.py │ ├── t341.py.real │ ├── t341.py.symtab │ ├── t341.trans │ ├── t342.py │ ├── t342.py.real │ ├── t342.py.symtab │ ├── t342.trans │ ├── t343.py.disabled │ ├── t343.py.real │ ├── t343.py.real.force │ ├── t343.py.symtab │ ├── t343.trans │ ├── t344.py │ ├── t344.py.real │ ├── t344.py.symtab │ ├── t344.trans │ ├── t345.py │ ├── t345.py.real │ ├── t345.py.symtab │ ├── t345.trans │ ├── t346.py │ ├── t346.py.real │ ├── t346.py.symtab │ ├── t346.trans │ ├── t347.py │ ├── t347.py.real │ ├── t347.py.symtab │ ├── t347.trans │ ├── t348.py │ ├── t348.py.real │ ├── t348.py.symtab │ ├── t348.trans │ ├── t349.py │ ├── t349.py.real │ ├── t349.py.symtab │ ├── t349.trans │ ├── t35.py │ ├── t35.py.real │ ├── t35.py.symtab │ ├── t35.trans │ ├── t350.py │ ├── t350.py.real │ ├── t350.py.symtab │ ├── t350.trans │ ├── t351.py │ ├── t351.py.real │ ├── t351.py.real.force │ ├── t351.py.symtab │ ├── t351.trans │ ├── t352.py │ ├── t352.py.real │ ├── t352.py.symtab │ ├── t352.trans │ ├── t353.py │ ├── t353.py.real │ ├── t353.py.real.force │ ├── t353.py.symtab │ ├── t353.trans │ ├── t354.py │ ├── t354.py.real │ ├── t354.py.symtab │ ├── t354.trans │ ├── t355.py │ ├── t355.py.real │ ├── t355.py.symtab │ ├── t355.trans │ ├── t356.py │ ├── t356.py.real │ ├── t356.py.real.force │ ├── t356.py.symtab │ ├── t356.trans │ ├── t357.py │ ├── t357.py.real │ ├── t357.py.symtab │ ├── t357.trans │ ├── t358.py │ ├── t358.py.real │ ├── t358.py.symtab │ ├── t358.trans │ ├── t359.py │ ├── t359.py.real │ ├── t359.py.symtab │ ├── t359.trans │ ├── t36.py │ ├── t36.py.real │ ├── t36.py.symtab │ ├── t36.trans │ ├── t360.py │ ├── t360.py.real │ ├── t360.py.real.force │ ├── t360.py.symtab │ ├── t360.trans │ ├── t361.py │ ├── t361.py.real │ ├── t361.py.symtab │ ├── t361.trans │ ├── t362.py │ ├── t362.py.real │ ├── t362.py.symtab │ ├── t362.trans │ ├── t363.py │ ├── t363.py.real │ ├── t363.py.real.force │ ├── t363.py.symtab │ ├── t363.trans │ ├── t364.py │ ├── t364.py.real │ ├── t364.py.symtab │ ├── t364.trans │ ├── t365.py │ ├── t365.py.real │ ├── t365.py.symtab │ ├── t365.trans │ ├── t366.py │ ├── t366.py.real │ ├── t366.py.real.force │ ├── t366.py.symtab │ ├── t366.trans │ ├── t367.py │ ├── t367.py.real │ ├── t367.py.symtab │ ├── t367.trans │ ├── t368.py │ ├── t368.py.real │ ├── t368.py.real.force │ ├── t368.py.symtab │ ├── t368.trans │ ├── t369.py │ ├── t369.py.real │ ├── t369.py.symtab │ ├── t369.trans │ ├── t37.py │ ├── t37.py.real │ ├── t37.py.symtab │ ├── t37.trans │ ├── t370.py │ ├── t370.py.real │ ├── t370.py.symtab │ ├── t370.trans │ ├── t371.py │ ├── t371.py.real │ ├── t371.py.symtab │ ├── t371.trans │ ├── t372.py │ ├── t372.py.real │ ├── t372.py.real.force │ ├── t372.py.symtab │ ├── t372.trans │ ├── t373.py │ ├── t373.py.real │ ├── t373.py.real.force │ ├── t373.py.symtab │ ├── t373.trans │ ├── t374.py │ ├── t374.py.real │ ├── t374.py.symtab │ ├── t374.trans │ ├── t375.py │ ├── t375.py.real │ ├── t375.py.real.force │ ├── t375.py.symtab │ ├── t375.trans │ ├── t376.py │ ├── t376.py.real │ ├── t376.py.real.force │ ├── t376.py.symtab │ ├── t376.trans │ ├── t377.py │ ├── t377.py.real │ ├── t377.py.real.force │ ├── t377.py.symtab │ ├── t377.trans │ ├── t378.py │ ├── t378.py.real │ ├── t378.py.symtab │ ├── t378.trans │ ├── t379.py │ ├── t379.py.real │ ├── t379.py.symtab │ ├── t379.trans │ ├── t38.py │ ├── t38.py.real │ ├── t38.py.symtab │ ├── t38.trans │ ├── t380.py │ ├── t380.py.real │ ├── t380.py.real.force │ ├── t380.py.symtab │ ├── t380.trans │ ├── t381.py │ ├── t381.py.real │ ├── t381.py.symtab │ ├── t381.trans │ ├── t382.py │ ├── t382.py.real │ ├── t382.py.real.force │ ├── t382.py.symtab │ ├── t382.trans │ ├── t383.py │ ├── t383.py.real │ ├── t383.py.real.force │ ├── t383.py.symtab │ ├── t383.trans │ ├── t384.py │ ├── t384.py.real │ ├── t384.py.real.force │ ├── t384.py.symtab │ ├── t384.trans │ ├── t385.py │ ├── t385.py.real │ ├── t385.py.real.force │ ├── t385.py.symtab │ ├── t385.trans │ ├── t386.py │ ├── t386.py.real │ ├── t386.py.real.force │ ├── t386.py.symtab │ ├── t386.trans │ ├── t387.py │ ├── t387.py.real │ ├── t387.py.real.force │ ├── t387.py.symtab │ ├── t387.trans │ ├── t388.py │ ├── t388.py.real │ ├── t388.py.symtab │ ├── t388.trans │ ├── t389.py │ ├── t389.py.real │ ├── t389.py.real.force │ ├── t389.py.symtab │ ├── t389.trans │ ├── t39.py │ ├── t39.py.real │ ├── t39.py.symtab │ ├── t39.trans │ ├── t390.py │ ├── t390.py.real │ ├── t390.py.symtab │ ├── t390.trans │ ├── t391.py │ ├── t391.py.real │ ├── t391.py.real.force │ ├── t391.py.symtab │ ├── t391.trans │ ├── t392.py │ ├── t392.py.real │ ├── t392.py.real.force │ ├── t392.py.symtab │ ├── t392.trans │ ├── t393.py │ ├── t393.py.real │ ├── t393.py.real.force │ ├── t393.py.symtab │ ├── t393.trans │ ├── t394.py │ ├── t394.py.real │ ├── t394.py.real.force │ ├── t394.py.symtab │ ├── t394.trans │ ├── t395.py │ ├── t395.py.real │ ├── t395.py.symtab │ ├── t395.trans │ ├── t396.py │ ├── t396.py.real │ ├── t396.py.symtab │ ├── t396.trans │ ├── t397.py │ ├── t397.py.real │ ├── t397.py.symtab │ ├── t397.trans │ ├── t398.py │ ├── t398.py.real │ ├── t398.py.symtab │ ├── t398.trans │ ├── t399.py │ ├── t399.py.real │ ├── t399.py.real.force │ ├── t399.py.symtab │ ├── t399.trans │ ├── t40.py │ ├── t40.py.real │ ├── t40.py.symtab │ ├── t40.trans │ ├── t400.py │ ├── t400.py.real │ ├── t400.py.real.force │ ├── t400.py.symtab │ ├── t400.trans │ ├── t401.py │ ├── t401.py.real │ ├── t401.py.symtab │ ├── t401.trans │ ├── t402.py │ ├── t402.py.real │ ├── t402.py.symtab │ ├── t402.trans │ ├── t403.py │ ├── t403.py.real │ ├── t403.py.symtab │ ├── t403.trans │ ├── t404.py │ ├── t404.py.real │ ├── t404.py.symtab │ ├── t404.trans │ ├── t405.py │ ├── t405.py.real │ ├── t405.py.symtab │ ├── t405.trans │ ├── t406.py │ ├── t406.py.real │ ├── t406.py.symtab │ ├── t406.trans │ ├── t407.py │ ├── t407.py.real │ ├── t407.py.real.force │ ├── t407.py.symtab │ ├── t407.trans │ ├── t408.py │ ├── t408.py.real │ ├── t408.py.symtab │ ├── t408.trans │ ├── t409.py │ ├── t409.py.real │ ├── t409.py.symtab │ ├── t409.trans │ ├── t41.py │ ├── t41.py.real │ ├── t41.py.symtab │ ├── t41.trans │ ├── t410.py │ ├── t410.py.real │ ├── t410.py.symtab │ ├── t410.trans │ ├── t411.py │ ├── t411.py.real │ ├── t411.py.symtab │ ├── t411.trans │ ├── t412.py │ ├── t412.py.real │ ├── t412.py.symtab │ ├── t412.trans │ ├── t413.py │ ├── t413.py.real │ ├── t413.py.symtab │ ├── t413.trans │ ├── t414.py │ ├── t414.py.real │ ├── t414.py.symtab │ ├── t414.trans │ ├── t415.py │ ├── t415.py.real │ ├── t415.py.symtab │ ├── t415.trans │ ├── t416.py │ ├── t416.py.real │ ├── t416.py.symtab │ ├── t416.trans │ ├── t417.py │ ├── t417.py.real │ ├── t417.py.symtab │ ├── t417.trans │ ├── t418.py │ ├── t418.py.real │ ├── t418.py.symtab │ ├── t418.trans │ ├── t419.py │ ├── t419.py.real │ ├── t419.py.symtab │ ├── t419.trans │ ├── t42.py │ ├── t42.py.real │ ├── t42.py.symtab │ ├── t42.trans │ ├── t420.py │ ├── t420.py.real │ ├── t420.py.symtab │ ├── t420.trans │ ├── t421.py │ ├── t421.py.real │ ├── t421.py.real.force │ ├── t421.py.symtab │ ├── t421.trans │ ├── t422.py │ ├── t422.py.real │ ├── t422.py.symtab │ ├── t422.trans │ ├── t423.py │ ├── t423.py.real │ ├── t423.py.symtab │ ├── t423.trans │ ├── t424.py │ ├── t424.py.real │ ├── t424.py.symtab │ ├── t424.trans │ ├── t425.py │ ├── t425.py.real │ ├── t425.py.symtab │ ├── t425.trans │ ├── t426.py │ ├── t426.py.real │ ├── t426.py.symtab │ ├── t426.trans │ ├── t427.py │ ├── t427.py.real │ ├── t427.py.symtab │ ├── t427.trans │ ├── t428.py │ ├── t428.py.real │ ├── t428.py.symtab │ ├── t428.trans │ ├── t429.py │ ├── t429.py.real │ ├── t429.py.symtab │ ├── t429.trans │ ├── t43.py │ ├── t43.py.real │ ├── t43.py.symtab │ ├── t43.trans │ ├── t430.py │ ├── t430.py.real │ ├── t430.py.symtab │ ├── t430.trans │ ├── t431.py │ ├── t431.py.real │ ├── t431.py.symtab │ ├── t431.trans │ ├── t432.py │ ├── t432.py.real │ ├── t432.py.symtab │ ├── t432.trans │ ├── t433.py │ ├── t433.py.real │ ├── t433.py.real.force │ ├── t433.py.symtab │ ├── t433.trans │ ├── t434.py │ ├── t434.py.real │ ├── t434.py.symtab │ ├── t434.trans │ ├── t435.py │ ├── t435.py.real │ ├── t435.py.symtab │ ├── t435.trans │ ├── t436.py │ ├── t436.py.real │ ├── t436.py.symtab │ ├── t436.trans │ ├── t437.py │ ├── t437.py.real │ ├── t437.py.symtab │ ├── t437.trans │ ├── t438.py │ ├── t438.py.real │ ├── t438.py.symtab │ ├── t438.trans │ ├── t439.py │ ├── t439.py.real │ ├── t439.py.symtab │ ├── t439.trans │ ├── t44.py │ ├── t44.py.real │ ├── t44.py.symtab │ ├── t44.trans │ ├── t440.py │ ├── t440.py.real │ ├── t440.py.symtab │ ├── t440.trans │ ├── t441.py │ ├── t441.py.real │ ├── t441.py.real.force │ ├── t441.py.symtab │ ├── t441.trans │ ├── t442.py │ ├── t442.py.real │ ├── t442.py.symtab │ ├── t442.trans │ ├── t443.py │ ├── t443.py.real │ ├── t443.py.symtab │ ├── t443.trans │ ├── t444.py │ ├── t444.py.real │ ├── t444.py.symtab │ ├── t444.trans │ ├── t445.py │ ├── t445.py.real │ ├── t445.py.symtab │ ├── t445.trans │ ├── t446.py │ ├── t446.py.real │ ├── t446.py.symtab │ ├── t446.trans │ ├── t447.py │ ├── t447.py.real │ ├── t447.py.symtab │ ├── t447.trans │ ├── t448.py │ ├── t448.py.real │ ├── t448.py.real.force │ ├── t448.py.symtab │ ├── t448.trans │ ├── t449.py │ ├── t449.py.real │ ├── t449.py.real.force │ ├── t449.py.symtab │ ├── t449.trans │ ├── t45.py │ ├── t45.py.real │ ├── t45.py.symtab │ ├── t45.trans │ ├── t450.py │ ├── t450.py.real │ ├── t450.py.real.force │ ├── t450.py.symtab │ ├── t450.trans │ ├── t451.py │ ├── t451.py.real │ ├── t451.py.symtab │ ├── t451.trans │ ├── t452.py │ ├── t452.py.real │ ├── t452.py.symtab │ ├── t452.trans │ ├── t453.py │ ├── t453.py.real │ ├── t453.py.symtab │ ├── t453.trans │ ├── t454.py │ ├── t454.py.real │ ├── t454.py.symtab │ ├── t454.trans │ ├── t455.py │ ├── t455.py.real │ ├── t455.py.real.force │ ├── t455.py.symtab │ ├── t455.trans │ ├── t456.py │ ├── t456.py.real │ ├── t456.py.symtab │ ├── t456.trans │ ├── t457.py │ ├── t457.py.real │ ├── t457.py.real.force │ ├── t457.py.symtab │ ├── t457.trans │ ├── t458.py │ ├── t458.py.real │ ├── t458.py.symtab │ ├── t458.trans │ ├── t459.py │ ├── t459.py.real │ ├── t459.py.symtab │ ├── t459.trans │ ├── t46.py │ ├── t46.py.real │ ├── t46.py.symtab │ ├── t46.trans │ ├── t460.py │ ├── t460.py.real │ ├── t460.py.symtab │ ├── t460.trans │ ├── t461.py │ ├── t461.py.real │ ├── t461.py.symtab │ ├── t461.trans │ ├── t462.py │ ├── t462.py.real │ ├── t462.py.symtab │ ├── t462.trans │ ├── t463.py │ ├── t463.py.real │ ├── t463.py.symtab │ ├── t463.trans │ ├── t464.py │ ├── t464.py.real │ ├── t464.py.real.force │ ├── t464.py.symtab │ ├── t464.trans │ ├── t465.py │ ├── t465.py.real │ ├── t465.py.symtab │ ├── t465.trans │ ├── t466.py │ ├── t466.py.real │ ├── t466.py.symtab │ ├── t466.trans │ ├── t467.py │ ├── t467.py.real │ ├── t467.py.real.force │ ├── t467.py.symtab │ ├── t467.trans │ ├── t468.py │ ├── t468.py.real │ ├── t468.py.symtab │ ├── t468.trans │ ├── t469.py │ ├── t469.py.real │ ├── t469.py.symtab │ ├── t469.trans │ ├── t47.py │ ├── t47.py.real │ ├── t47.py.symtab │ ├── t47.trans │ ├── t470.py │ ├── t470.py.real │ ├── t470.py.symtab │ ├── t470.trans │ ├── t471.py │ ├── t471.py.real │ ├── t471.py.symtab │ ├── t471.trans │ ├── t472.py │ ├── t472.py.real │ ├── t472.py.symtab │ ├── t472.trans │ ├── t473.py │ ├── t473.py.real │ ├── t473.py.symtab │ ├── t473.trans │ ├── t474.py │ ├── t474.py.real │ ├── t474.py.symtab │ ├── t474.trans │ ├── t475.py │ ├── t475.py.real │ ├── t475.py.symtab │ ├── t475.trans │ ├── t476.py │ ├── t476.py.real │ ├── t476.py.symtab │ ├── t476.trans │ ├── t477.py │ ├── t477.py.real │ ├── t477.py.symtab │ ├── t477.trans │ ├── t478.py │ ├── t478.py.real │ ├── t478.py.symtab │ ├── t478.trans │ ├── t479.py │ ├── t479.py.real │ ├── t479.py.real.force │ ├── t479.py.symtab │ ├── t479.trans │ ├── t48.py │ ├── t48.py.real │ ├── t48.py.symtab │ ├── t48.trans │ ├── t480.py │ ├── t480.py.real │ ├── t480.py.real.force │ ├── t480.py.symtab │ ├── t480.trans │ ├── t481.py │ ├── t481.py.real │ ├── t481.py.symtab │ ├── t481.trans │ ├── t482.py │ ├── t482.py.real │ ├── t482.py.real.force │ ├── t482.py.symtab │ ├── t482.trans │ ├── t483.py │ ├── t483.py.real │ ├── t483.py.symtab │ ├── t483.trans │ ├── t484.py │ ├── t484.py.real │ ├── t484.py.symtab │ ├── t484.trans │ ├── t485.py │ ├── t485.py.real │ ├── t485.py.symtab │ ├── t485.trans │ ├── t486.py │ ├── t486.py.real │ ├── t486.py.real.force │ ├── t486.py.symtab │ ├── t486.trans │ ├── t487.py │ ├── t487.py.real │ ├── t487.py.real.force │ ├── t487.py.symtab │ ├── t487.trans │ ├── t488.py │ ├── t488.py.real │ ├── t488.py.symtab │ ├── t488.trans │ ├── t489.py │ ├── t489.py.real │ ├── t489.py.symtab │ ├── t489.trans │ ├── t49.py │ ├── t49.py.real │ ├── t49.py.symtab │ ├── t49.trans │ ├── t490.py │ ├── t490.py.real │ ├── t490.py.symtab │ ├── t490.trans │ ├── t491.py │ ├── t491.py.real │ ├── t491.py.symtab │ ├── t491.trans │ ├── t492.py │ ├── t492.py.real │ ├── t492.py.symtab │ ├── t492.trans │ ├── t493.py │ ├── t493.py.real │ ├── t493.py.symtab │ ├── t493.trans │ ├── t494.py │ ├── t494.py.real │ ├── t494.py.symtab │ ├── t494.trans │ ├── t495.py │ ├── t495.py.real │ ├── t495.py.symtab │ ├── t495.trans │ ├── t496.py │ ├── t496.py.real │ ├── t496.py.symtab │ ├── t496.trans │ ├── t497.py │ ├── t497.py.real │ ├── t497.py.symtab │ ├── t497.trans │ ├── t498.py │ ├── t498.py.real │ ├── t498.py.symtab │ ├── t498.trans │ ├── t499.py │ ├── t499.py.real │ ├── t499.py.symtab │ ├── t499.trans │ ├── t50.py │ ├── t50.py.real │ ├── t50.py.symtab │ ├── t50.trans │ ├── t500.py │ ├── t500.py.real │ ├── t500.py.symtab │ ├── t500.trans │ ├── t501.py │ ├── t501.py.real │ ├── t501.py.symtab │ ├── t501.trans │ ├── t502.py │ ├── t502.py.real │ ├── t502.py.real.alt │ ├── t502.py.symtab │ ├── t502.trans │ ├── t503.py │ ├── t503.py.real │ ├── t503.py.symtab │ ├── t503.trans │ ├── t504.py │ ├── t504.py.real │ ├── t504.py.symtab │ ├── t504.trans │ ├── t505.py │ ├── t505.py.real │ ├── t505.py.symtab │ ├── t505.trans │ ├── t506.py │ ├── t506.py.real │ ├── t506.py.real.force │ ├── t506.py.symtab │ ├── t506.trans │ ├── t507.py │ ├── t507.py.real │ ├── t507.py.symtab │ ├── t507.trans │ ├── t508.py │ ├── t508.py.real │ ├── t508.py.symtab │ ├── t508.trans │ ├── t509.py │ ├── t509.py.real │ ├── t509.py.symtab │ ├── t509.trans │ ├── t51.py │ ├── t51.py.real │ ├── t51.py.symtab │ ├── t51.trans │ ├── t510.py │ ├── t510.py.real │ ├── t510.py.symtab │ ├── t510.trans │ ├── t511.py │ ├── t511.py.real │ ├── t511.py.symtab │ ├── t511.trans │ ├── t512.py │ ├── t512.py.real │ ├── t512.py.real.force │ ├── t512.py.symtab │ ├── t512.trans │ ├── t513.py │ ├── t513.py.real │ ├── t513.py.symtab │ ├── t513.trans │ ├── t514.py │ ├── t514.py.real │ ├── t514.py.symtab │ ├── t514.trans │ ├── t515.py │ ├── t515.py.real │ ├── t515.py.symtab │ ├── t515.trans │ ├── t516.py │ ├── t516.py.real │ ├── t516.py.symtab │ ├── t516.trans │ ├── t517.py │ ├── t517.py.real │ ├── t517.py.symtab │ ├── t517.trans │ ├── t518.py │ ├── t518.py.real │ ├── t518.py.symtab │ ├── t518.trans │ ├── t519.py │ ├── t519.py.real │ ├── t519.py.symtab │ ├── t519.trans │ ├── t52.py │ ├── t52.py.real │ ├── t52.py.symtab │ ├── t52.trans │ ├── t520.py │ ├── t520.py.real │ ├── t520.py.real.force │ ├── t520.py.symtab │ ├── t520.trans │ ├── t521.py │ ├── t521.py.real │ ├── t521.py.real.force │ ├── t521.py.symtab │ ├── t521.trans │ ├── t522.py │ ├── t522.py.real │ ├── t522.py.symtab │ ├── t522.trans │ ├── t523.py │ ├── t523.py.real │ ├── t523.py.symtab │ ├── t523.trans │ ├── t524.py │ ├── t524.py.real │ ├── t524.py.symtab │ ├── t524.trans │ ├── t525.py │ ├── t525.py.real │ ├── t525.py.symtab │ ├── t525.trans │ ├── t526.py │ ├── t526.py.real │ ├── t526.py.symtab │ ├── t526.trans │ ├── t527.py │ ├── t527.py.real │ ├── t527.py.symtab │ ├── t527.trans │ ├── t528.py │ ├── t528.py.real │ ├── t528.py.symtab │ ├── t528.trans │ ├── t529.py │ ├── t529.py.real │ ├── t529.py.real.force │ ├── t529.py.symtab │ ├── t529.trans │ ├── t53.py │ ├── t53.py.real │ ├── t53.py.symtab │ ├── t53.trans │ ├── t530.py │ ├── t530.py.real │ ├── t530.py.symtab │ ├── t530.trans │ ├── t531.py │ ├── t531.py.real │ ├── t531.py.symtab │ ├── t531.trans │ ├── t532.py │ ├── t532.py.real │ ├── t532.py.symtab │ ├── t532.trans │ ├── t533.py │ ├── t533.py.real │ ├── t533.py.symtab │ ├── t533.trans │ ├── t534.py │ ├── t534.py.real │ ├── t534.py.symtab │ ├── t534.trans │ ├── t535.py │ ├── t535.py.real │ ├── t535.py.symtab │ ├── t535.trans │ ├── t536.py │ ├── t536.py.real │ ├── t536.py.symtab │ ├── t536.trans │ ├── t537.py │ ├── t537.py.real │ ├── t537.py.symtab │ ├── t537.trans │ ├── t538.py │ ├── t538.py.real │ ├── t538.py.symtab │ ├── t538.trans │ ├── t539.py │ ├── t539.py.real │ ├── t539.py.real.force │ ├── t539.py.symtab │ ├── t539.symtab │ ├── t539.trans │ ├── t54.py │ ├── t54.py.real │ ├── t54.py.symtab │ ├── t54.trans │ ├── t540.py │ ├── t540.py.real │ ├── t540.py.symtab │ ├── t540.trans │ ├── t541.py │ ├── t541.py.real │ ├── t541.py.symtab │ ├── t541.trans │ ├── t542.py │ ├── t542.py.real │ ├── t542.py.symtab │ ├── t542.trans │ ├── t543.py │ ├── t543.py.real │ ├── t543.py.symtab │ ├── t543.trans │ ├── t544.py │ ├── t544.py.real │ ├── t544.py.symtab │ ├── t544.trans │ ├── t545.py │ ├── t545.py.real │ ├── t545.py.symtab │ ├── t545.trans │ ├── t546.py │ ├── t546.py.real │ ├── t546.py.symtab │ ├── t546.trans │ ├── t548.py │ ├── t548.py.real │ ├── t548.py.symtab │ ├── t548.trans │ ├── t549.py │ ├── t549.py.real │ ├── t549.py.real.force │ ├── t549.py.symtab │ ├── t549.trans │ ├── t55.py │ ├── t55.py.real │ ├── t55.py.symtab │ ├── t55.trans │ ├── t550.py │ ├── t550.py.real │ ├── t550.py.symtab │ ├── t550.trans │ ├── t551.py │ ├── t551.py.real │ ├── t551.py.symtab │ ├── t551.trans │ ├── t552.py.real │ ├── t553.py │ ├── t553.py.real │ ├── t553.py.symtab │ ├── t553.trans │ ├── t554.py │ ├── t554.py.real │ ├── t554.py.symtab │ ├── t554.trans │ ├── t555.py │ ├── t555.py.real │ ├── t555.py.symtab │ ├── t555.trans │ ├── t556.py │ ├── t556.py.real │ ├── t556.py.symtab │ ├── t556.trans │ ├── t557.py │ ├── t557.py.real │ ├── t557.py.real.force │ ├── t557.py.symtab │ ├── t557.trans │ ├── t56.py │ ├── t56.py.real │ ├── t56.py.symtab │ ├── t56.trans │ ├── t57.py │ ├── t57.py.real │ ├── t57.py.symtab │ ├── t57.trans │ ├── t58.py │ ├── t58.py.real │ ├── t58.py.symtab │ ├── t58.trans │ ├── t580.py │ ├── t580.py.real │ ├── t580.py.real.force │ ├── t580.py.symtab │ ├── t580.trans │ ├── t581.py │ ├── t581.py.real │ ├── t581.py.symtab │ ├── t581.trans │ ├── t59.py │ ├── t59.py.real │ ├── t59.py.symtab │ ├── t59.trans │ ├── t60.py │ ├── t60.py.real │ ├── t60.py.symtab │ ├── t60.trans │ ├── t61.py │ ├── t61.py.real │ ├── t61.py.symtab │ ├── t61.trans │ ├── t62.py │ ├── t62.py.real │ ├── t62.py.symtab │ ├── t62.trans │ ├── t63.py │ ├── t63.py.real │ ├── t63.py.symtab │ ├── t63.trans │ ├── t64.py │ ├── t64.py.real │ ├── t64.py.symtab │ ├── t64.trans │ ├── t65.py │ ├── t65.py.real │ ├── t65.py.symtab │ ├── t65.trans │ ├── t66.py │ ├── t66.py.real │ ├── t66.py.symtab │ ├── t66.trans │ ├── t67.py │ ├── t67.py.real │ ├── t67.py.symtab │ ├── t67.trans │ ├── t68.py │ ├── t68.py.real │ ├── t68.py.symtab │ ├── t68.trans │ ├── t69.py │ ├── t69.py.real │ ├── t69.py.symtab │ ├── t69.trans │ ├── t70.py │ ├── t70.py.real │ ├── t70.py.symtab │ ├── t70.trans │ ├── t71.py │ ├── t71.py.real │ ├── t71.py.symtab │ ├── t71.trans │ ├── t72.py │ ├── t72.py.real │ ├── t72.py.symtab │ ├── t72.trans │ ├── t73.py │ ├── t73.py.real │ ├── t73.py.real.force │ ├── t73.py.symtab │ ├── t73.trans │ ├── t74.py │ ├── t74.py.real │ ├── t74.py.symtab │ ├── t74.trans │ ├── t75.py │ ├── t75.py.real │ ├── t75.py.symtab │ ├── t75.trans │ ├── t76.py │ ├── t76.py.real │ ├── t76.py.symtab │ ├── t76.trans │ ├── t77.py │ ├── t77.py.real │ ├── t77.py.symtab │ ├── t77.trans │ ├── t78.py │ ├── t78.py.real │ ├── t78.py.symtab │ ├── t78.trans │ ├── t79.py │ ├── t79.py.real │ ├── t79.py.symtab │ ├── t79.trans │ ├── t80.py │ ├── t80.py.real │ ├── t80.py.symtab │ ├── t80.trans │ ├── t81.py │ ├── t81.py.real │ ├── t81.py.symtab │ ├── t81.trans │ ├── t82.py │ ├── t82.py.real │ ├── t82.py.symtab │ ├── t82.trans │ ├── t83.py │ ├── t83.py.real │ ├── t83.py.symtab │ ├── t83.trans │ ├── t84.py │ ├── t84.py.real │ ├── t84.py.symtab │ ├── t84.trans │ ├── t85.py │ ├── t85.py.real │ ├── t85.py.symtab │ ├── t85.trans │ ├── t86.py │ ├── t86.py.real │ ├── t86.py.symtab │ ├── t86.trans │ ├── t87.py │ ├── t87.py.real │ ├── t87.py.symtab │ ├── t87.trans │ ├── t88.py │ ├── t88.py.real │ ├── t88.py.symtab │ ├── t88.trans │ ├── t89.py │ ├── t89.py.real │ ├── t89.py.symtab │ ├── t89.trans │ ├── t90.py │ ├── t90.py.real │ ├── t90.py.symtab │ ├── t90.trans │ ├── t900.py │ ├── t900.py.real │ ├── t900.py.real.force │ ├── t901.py │ ├── t901.py.real │ ├── t901.py.real.alt │ ├── t901.py.real.force │ ├── t902.py │ ├── t902.py.real │ ├── t903.py │ ├── t903.py.real │ ├── t904.py │ ├── t904.py.real │ ├── t904.py.real.force │ ├── t905.py │ ├── t905.py.real │ ├── t91.py │ ├── t91.py.real │ ├── t91.py.symtab │ ├── t91.trans │ ├── t92.py │ ├── t92.py.real │ ├── t92.py.symtab │ ├── t92.trans │ ├── t93.py │ ├── t93.py.real │ ├── t93.py.symtab │ ├── t93.trans │ ├── t94.py │ ├── t94.py.real │ ├── t94.py.symtab │ ├── t94.trans │ ├── t95.py │ ├── t95.py.real │ ├── t95.py.symtab │ ├── t95.trans │ ├── t96.py │ ├── t96.py.real │ ├── t96.py.symtab │ ├── t96.trans │ ├── t97.py │ ├── t97.py.real │ ├── t97.py.real.force │ ├── t97.py.symtab │ ├── t97.trans │ ├── t98.py │ ├── t98.py.real │ ├── t98.py.symtab │ ├── t98.trans │ ├── t99.py │ ├── t99.py.real │ ├── t99.py.symtab │ └── t99.trans ├── sprintf.js ├── t998.py ├── t999.py ├── test.js ├── testunit.js ├── testwrapper.js ├── tokenize │ ├── t00.expect │ ├── t00.py │ ├── t01.expect │ ├── t01.py │ ├── t02.expect │ ├── t02.py │ ├── t03.expect │ ├── t03.py │ ├── t04.expect │ ├── t04.py │ ├── t05.expect │ ├── t05.py │ ├── t06.expect │ ├── t06.py │ ├── t07.expect │ ├── t07.py │ ├── t08.expect │ ├── t08.py │ ├── t09.expect │ ├── t09.py │ ├── t10.expect │ ├── t10.py │ ├── t11.expect │ ├── t11.py │ ├── t12.expect │ ├── t12.py │ ├── t13.expect │ ├── t13.py │ ├── t14.expect │ ├── t14.py │ ├── t15.expect │ ├── t15.py │ ├── t16.expect │ ├── t16.py │ ├── t17.expect │ ├── t17.py │ ├── t18.expect │ ├── t18.py │ ├── t19.expect │ ├── t19.py │ ├── t20.expect │ ├── t20.py │ ├── t21.expect │ ├── t21.py │ ├── t22.expect │ ├── t22.py │ ├── t23.expect │ ├── t23.py │ ├── t24.expect │ ├── t24.py │ ├── t25.expect │ ├── t25.py │ ├── t26.expect │ ├── t26.py │ ├── t27.expect │ ├── t27.py │ ├── t28.expect │ ├── t28.py │ ├── t29.expect │ ├── t29.py │ ├── t30.expect │ ├── t30.py │ ├── t31.expect │ ├── t31.py │ ├── t32.expect │ ├── t32.py │ ├── t33.expect │ ├── t33.py │ ├── t34.expect │ ├── t34.py │ ├── t35.expect │ ├── t35.py │ ├── t36.expect │ ├── t36.py │ ├── t37.expect │ ├── t37.py │ ├── t38.expect │ ├── t38.py │ ├── t39.expect │ ├── t39.py │ ├── t40.expect │ ├── t40.py │ ├── t41.expect │ ├── t41.py │ ├── t42.expect │ └── t42.py ├── turtle │ ├── SpecRunner.html │ ├── lib │ │ ├── jasmine-2.0.0 │ │ │ ├── boot.js │ │ │ ├── console.js │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ ├── jasmine.js │ │ │ └── jasmine_favicon.png │ │ └── js-imagediff │ │ │ └── imagediff.js │ ├── referenceImageCreator.html │ ├── spec │ │ ├── TurtleSpec.js │ │ └── VectorSpec.js │ └── test.html ├── unit │ ├── exiting_module.py │ ├── file.txt │ ├── importable_module.py │ ├── subpackage │ │ ├── __init__.py │ │ ├── explicit_relative_import.py │ │ ├── implicit_import.py │ │ ├── implicit_import_2.py │ │ ├── importable_module.py │ │ └── importable_module_2.py │ ├── test_StringIO.py │ ├── test_attrs.py │ ├── test_binop.py │ ├── test_bisect.py │ ├── test_bug619.py │ ├── test_builtin.py │ ├── test_calling.py │ ├── test_changing_class.py │ ├── test_complex.py │ ├── test_constructors.py │ ├── test_contains.py │ ├── test_copy.py │ ├── test_datetime.py │ ├── test_decorators.py │ ├── test_decorators_2.py │ ├── test_deepcopy.py │ ├── test_descr.py │ ├── test_descr_skulpt.py │ ├── test_dict.py │ ├── test_exceptions.py │ ├── test_exit.py │ ├── test_factorial.py │ ├── test_file.py │ ├── test_float.py │ ├── test_format.py │ ├── test_import.py │ ├── test_index.py │ ├── test_inheritance.py │ ├── test_input.py │ ├── test_int.py │ ├── test_int_literal.py │ ├── test_iter.py │ ├── test_list.py │ ├── test_list_sort.py │ ├── test_namedtuple.py │ ├── test_ordereddict.py │ ├── test_random.py │ ├── test_re.py │ ├── test_regressions.py │ ├── test_reserved_words.py │ ├── test_set.py │ ├── test_simplemath.py │ ├── test_strcount.py │ ├── test_strformat.py │ ├── test_strfunctions.py │ ├── test_structseq.py │ ├── test_subclass.py │ ├── test_time.py │ ├── test_tokenize.py │ ├── test_tuple.py │ ├── test_unary.py │ ├── test_unichr.py │ ├── test_unicode.py │ ├── test_unpack.py │ └── test_with.py ├── unit3 │ ├── copydocstring.py │ ├── exiting_module.py │ ├── list_tests.py │ ├── overwritedocstring.py │ ├── pkga │ │ └── pkgb │ │ │ └── modc.py │ ├── seq_tests.py │ ├── simpleMath.py │ ├── t221_sub.py │ ├── test_abstract_numbers.py │ ├── test_binop.py │ ├── test_bitwise_operators.py │ ├── test_bool.py │ ├── test_bug619.py │ ├── test_builtin.py │ ├── test_bytes.py │ ├── test_calendar.py │ ├── test_call.py │ ├── test_calling.py │ ├── test_class.py │ ├── test_compare.py │ ├── test_complex.py │ ├── test_conditionals.py │ ├── test_contains.py │ ├── test_copy.py │ ├── test_counter.py │ ├── test_datetime.py │ ├── test_decorators.py │ ├── test_defaultdict.py │ ├── test_del_attr.py │ ├── test_deque.py │ ├── test_descr.py │ ├── test_dict.py │ ├── test_dictcomps.py │ ├── test_dictviews.py │ ├── test_docstring.py │ ├── test_enumerate.py │ ├── test_errors.py │ ├── test_exit.py │ ├── test_filter_map_zip.py │ ├── test_float.py │ ├── test_fractions.py │ ├── test_fstring.py │ ├── test_funcattrs.py │ ├── test_functions.py │ ├── test_functools.py │ ├── test_generic_alias.py │ ├── test_genericclass.py │ ├── test_grammar.py │ ├── test_hash.py │ ├── test_import │ │ ├── __init__.py │ │ └── data │ │ │ ├── __init__.py │ │ │ ├── circular_imports │ │ │ ├── __init__.py │ │ │ ├── basic.py │ │ │ ├── basic2.py │ │ │ ├── binding.py │ │ │ ├── binding2.py │ │ │ ├── from_cycle1.py │ │ │ ├── from_cycle2.py │ │ │ ├── indirect.py │ │ │ ├── rebinding.py │ │ │ ├── rebinding2.py │ │ │ ├── source.py │ │ │ ├── subpackage.py │ │ │ ├── subpkg │ │ │ │ ├── __init__.py │ │ │ │ ├── subpackage2.py │ │ │ │ └── util.py │ │ │ ├── use.py │ │ │ └── util.py │ │ │ ├── package │ │ │ ├── __init__.py │ │ │ └── submodule.py │ │ │ ├── package2 │ │ │ ├── __init__.py │ │ │ ├── submodule1.py │ │ │ └── submodule2.py │ │ │ └── unwritable │ │ │ ├── __init__.py │ │ │ └── x.py │ ├── test_imports.py │ ├── test_index.py │ ├── test_inheritance.py │ ├── test_init_subclass.py │ ├── test_int.py │ ├── test_int_literal.py │ ├── test_isinstance.py │ ├── test_iter.py │ ├── test_itertools.py │ ├── test_json.py │ ├── test_list.py │ ├── test_list_sort.py │ ├── test_logging.py │ ├── test_logical_operators.py │ ├── test_long.py │ ├── test_loops.py │ ├── test_magicmethods.py │ ├── test_mapping.py │ ├── test_math.py │ ├── test_matmul.py │ ├── test_module.py │ ├── test_none.py │ ├── test_operator.py │ ├── test_ordereddict.py │ ├── test_pow.py │ ├── test_raising_descriptor_get.py │ ├── test_random.py │ ├── test_range.py │ ├── test_re.py │ ├── test_re_custom.py │ ├── test_scope.py │ ├── test_set.py │ ├── test_skulpt_bugs.py │ ├── test_skulpt_interop.py │ ├── test_sort.py │ ├── test_strcount.py │ ├── test_strformat.py │ ├── test_string.py │ ├── test_string_functions.py │ ├── test_string_methods.py │ ├── test_strptime.py │ ├── test_structseq.py │ ├── test_super.py │ ├── test_suspensions.py │ ├── test_textwrap.py │ ├── test_time.py │ ├── test_tuple.py │ ├── test_type.py │ ├── test_types.py │ ├── test_unary.py │ ├── test_unpack.py │ ├── test_uuid.py │ ├── test_variables.py │ └── test_yield_from.py └── unit_tmpl.py ├── tok_test.py └── webpack.config.js /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/.bowerrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/.hgignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/HACKING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/bower.json -------------------------------------------------------------------------------- /dist-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/dist-update.sh -------------------------------------------------------------------------------- /gen/astnodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/gen/astnodes.js -------------------------------------------------------------------------------- /jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/jsdoc.json -------------------------------------------------------------------------------- /m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/m -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/package.json -------------------------------------------------------------------------------- /repl/repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/repl/repl.js -------------------------------------------------------------------------------- /skulpt.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | python skulpt.py %1 %2 3 | -------------------------------------------------------------------------------- /skulpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/skulpt.py -------------------------------------------------------------------------------- /src/abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/abstract.js -------------------------------------------------------------------------------- /src/assert-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/assert-dev.js -------------------------------------------------------------------------------- /src/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/ast.js -------------------------------------------------------------------------------- /src/bool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/bool.js -------------------------------------------------------------------------------- /src/builtin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/builtin.js -------------------------------------------------------------------------------- /src/bytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/bytes.js -------------------------------------------------------------------------------- /src/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/check.js -------------------------------------------------------------------------------- /src/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/compile.js -------------------------------------------------------------------------------- /src/complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/complex.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/descr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/descr.js -------------------------------------------------------------------------------- /src/dict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/dict.js -------------------------------------------------------------------------------- /src/enumerate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/enumerate.js -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/env.js -------------------------------------------------------------------------------- /src/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/errors.js -------------------------------------------------------------------------------- /src/ffi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/ffi.js -------------------------------------------------------------------------------- /src/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/file.js -------------------------------------------------------------------------------- /src/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/filter.js -------------------------------------------------------------------------------- /src/float.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/float.js -------------------------------------------------------------------------------- /src/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/formatting.js -------------------------------------------------------------------------------- /src/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/function.js -------------------------------------------------------------------------------- /src/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/generator.js -------------------------------------------------------------------------------- /src/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/generic.js -------------------------------------------------------------------------------- /src/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/import.js -------------------------------------------------------------------------------- /src/int.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/int.js -------------------------------------------------------------------------------- /src/lib/Cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/Cookie.py -------------------------------------------------------------------------------- /src/lib/JoBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/JoBase.js -------------------------------------------------------------------------------- /src/lib/Queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/Queue.py -------------------------------------------------------------------------------- /src/lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/abc.py -------------------------------------------------------------------------------- /src/lib/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/aifc.py -------------------------------------------------------------------------------- /src/lib/anydbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/anydbm.py -------------------------------------------------------------------------------- /src/lib/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/array.js -------------------------------------------------------------------------------- /src/lib/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/ast.py -------------------------------------------------------------------------------- /src/lib/atexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/atexit.py -------------------------------------------------------------------------------- /src/lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/base64.py -------------------------------------------------------------------------------- /src/lib/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/bdb.py -------------------------------------------------------------------------------- /src/lib/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/binhex.py -------------------------------------------------------------------------------- /src/lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/bisect.py -------------------------------------------------------------------------------- /src/lib/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/cgi.py -------------------------------------------------------------------------------- /src/lib/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/cgitb.py -------------------------------------------------------------------------------- /src/lib/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/chunk.py -------------------------------------------------------------------------------- /src/lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/cmd.py -------------------------------------------------------------------------------- /src/lib/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/code.py -------------------------------------------------------------------------------- /src/lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/codecs.py -------------------------------------------------------------------------------- /src/lib/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/codeop.py -------------------------------------------------------------------------------- /src/lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/copy.py -------------------------------------------------------------------------------- /src/lib/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/csv.py -------------------------------------------------------------------------------- /src/lib/dbhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/dbhash.py -------------------------------------------------------------------------------- /src/lib/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/dis.py -------------------------------------------------------------------------------- /src/lib/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/ftplib.py -------------------------------------------------------------------------------- /src/lib/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/getopt.py -------------------------------------------------------------------------------- /src/lib/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/glob.py -------------------------------------------------------------------------------- /src/lib/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/gzip.py -------------------------------------------------------------------------------- /src/lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/heapq.py -------------------------------------------------------------------------------- /src/lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/hmac.py -------------------------------------------------------------------------------- /src/lib/ihooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/ihooks.py -------------------------------------------------------------------------------- /src/lib/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/image.js -------------------------------------------------------------------------------- /src/lib/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/imghdr.py -------------------------------------------------------------------------------- /src/lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/io.py -------------------------------------------------------------------------------- /src/lib/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/json.js -------------------------------------------------------------------------------- /src/lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/locale.py -------------------------------------------------------------------------------- /src/lib/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/math.js -------------------------------------------------------------------------------- /src/lib/md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/md5.py -------------------------------------------------------------------------------- /src/lib/mhlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/mhlib.py -------------------------------------------------------------------------------- /src/lib/mimify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/mimify.py -------------------------------------------------------------------------------- /src/lib/mutex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/mutex.py -------------------------------------------------------------------------------- /src/lib/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/netrc.py -------------------------------------------------------------------------------- /src/lib/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/new.py -------------------------------------------------------------------------------- /src/lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/ntpath.py -------------------------------------------------------------------------------- /src/lib/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/opcode.py -------------------------------------------------------------------------------- /src/lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/os.py -------------------------------------------------------------------------------- /src/lib/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/pdb.py -------------------------------------------------------------------------------- /src/lib/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/pickle.py -------------------------------------------------------------------------------- /src/lib/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/pipes.py -------------------------------------------------------------------------------- /src/lib/popen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/popen2.py -------------------------------------------------------------------------------- /src/lib/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/poplib.py -------------------------------------------------------------------------------- /src/lib/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/pprint.py -------------------------------------------------------------------------------- /src/lib/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/pstats.py -------------------------------------------------------------------------------- /src/lib/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/pty.py -------------------------------------------------------------------------------- /src/lib/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/pyclbr.py -------------------------------------------------------------------------------- /src/lib/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/pydoc.py -------------------------------------------------------------------------------- /src/lib/pythonds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/pythoned/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/quopri.py -------------------------------------------------------------------------------- /src/lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/random.py -------------------------------------------------------------------------------- /src/lib/re.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/re.js -------------------------------------------------------------------------------- /src/lib/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/repr.py -------------------------------------------------------------------------------- /src/lib/rexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/rexec.py -------------------------------------------------------------------------------- /src/lib/rfc822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/rfc822.py -------------------------------------------------------------------------------- /src/lib/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/runpy.py -------------------------------------------------------------------------------- /src/lib/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/sched.py -------------------------------------------------------------------------------- /src/lib/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/sets.py -------------------------------------------------------------------------------- /src/lib/sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/sha.py -------------------------------------------------------------------------------- /src/lib/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/shelve.py -------------------------------------------------------------------------------- /src/lib/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/shlex.py -------------------------------------------------------------------------------- /src/lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/shutil.py -------------------------------------------------------------------------------- /src/lib/signal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/signal.js -------------------------------------------------------------------------------- /src/lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/site.py -------------------------------------------------------------------------------- /src/lib/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/smtpd.py -------------------------------------------------------------------------------- /src/lib/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/sndhdr.py -------------------------------------------------------------------------------- /src/lib/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/socket.py -------------------------------------------------------------------------------- /src/lib/sre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/sre.py -------------------------------------------------------------------------------- /src/lib/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/ssl.py -------------------------------------------------------------------------------- /src/lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/stat.py -------------------------------------------------------------------------------- /src/lib/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/string.js -------------------------------------------------------------------------------- /src/lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/struct.py -------------------------------------------------------------------------------- /src/lib/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/sunau.py -------------------------------------------------------------------------------- /src/lib/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/symbol.py -------------------------------------------------------------------------------- /src/lib/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/this.py -------------------------------------------------------------------------------- /src/lib/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/time.js -------------------------------------------------------------------------------- /src/lib/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/timeit.py -------------------------------------------------------------------------------- /src/lib/toaiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/toaiff.py -------------------------------------------------------------------------------- /src/lib/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/token.js -------------------------------------------------------------------------------- /src/lib/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/trace.py -------------------------------------------------------------------------------- /src/lib/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/tty.py -------------------------------------------------------------------------------- /src/lib/turtle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/turtle.js -------------------------------------------------------------------------------- /src/lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/types.py -------------------------------------------------------------------------------- /src/lib/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/user.py -------------------------------------------------------------------------------- /src/lib/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/uu.py -------------------------------------------------------------------------------- /src/lib/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/uuid.js -------------------------------------------------------------------------------- /src/lib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/wave.py -------------------------------------------------------------------------------- /src/lib/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/xdrlib.py -------------------------------------------------------------------------------- /src/lib/xmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/lib/xmllib.py -------------------------------------------------------------------------------- /src/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/list.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/main.js -------------------------------------------------------------------------------- /src/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/map.js -------------------------------------------------------------------------------- /src/method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/method.js -------------------------------------------------------------------------------- /src/misceval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/misceval.js -------------------------------------------------------------------------------- /src/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/module.js -------------------------------------------------------------------------------- /src/nonetype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/nonetype.js -------------------------------------------------------------------------------- /src/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/object.js -------------------------------------------------------------------------------- /src/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/parser.js -------------------------------------------------------------------------------- /src/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/print.js -------------------------------------------------------------------------------- /src/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/range.js -------------------------------------------------------------------------------- /src/reversed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/reversed.js -------------------------------------------------------------------------------- /src/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/set.js -------------------------------------------------------------------------------- /src/sk_method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/sk_method.js -------------------------------------------------------------------------------- /src/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/slice.js -------------------------------------------------------------------------------- /src/slotdefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/slotdefs.js -------------------------------------------------------------------------------- /src/str.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/str.js -------------------------------------------------------------------------------- /src/structseq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/structseq.js -------------------------------------------------------------------------------- /src/super.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/super.js -------------------------------------------------------------------------------- /src/symtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/symtable.js -------------------------------------------------------------------------------- /src/timsort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/timsort.js -------------------------------------------------------------------------------- /src/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/token.js -------------------------------------------------------------------------------- /src/tokenize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/tokenize.js -------------------------------------------------------------------------------- /src/tuple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/tuple.js -------------------------------------------------------------------------------- /src/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/type.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/util.js -------------------------------------------------------------------------------- /src/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/src/zip.js -------------------------------------------------------------------------------- /stdlibstubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/stdlibstubs.py -------------------------------------------------------------------------------- /support/closure-wrap-gen/jsdoc-toolkit/app/test/shared2.js: -------------------------------------------------------------------------------- 1 | startOver = function(){ 2 | } -------------------------------------------------------------------------------- /test/astppdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/astppdump.py -------------------------------------------------------------------------------- /test/closure/t00.py.real: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/interactive/t00.py: -------------------------------------------------------------------------------- 1 | print 4 2 | -------------------------------------------------------------------------------- /test/interactive/t00.py.real: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /test/interactive/t01.py: -------------------------------------------------------------------------------- 1 | for i in range(10): 2 | print i 3 | 4 | -------------------------------------------------------------------------------- /test/interactive/t02.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/interactive/t02.py.real: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/interactive/t03.py: -------------------------------------------------------------------------------- 1 | class X: pass 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/interactive/t03.py.real: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/interactive/t04.py.real: -------------------------------------------------------------------------------- 1 | wee 2 | <__main__.X instance> 3 | -------------------------------------------------------------------------------- /test/interactive/t04.py.real.force: -------------------------------------------------------------------------------- 1 | wee 2 | <__main__.X instance> 3 | -------------------------------------------------------------------------------- /test/interactive/t05.py.real: -------------------------------------------------------------------------------- 1 | yes 2 | -------------------------------------------------------------------------------- /test/interactive/t06.py.real: -------------------------------------------------------------------------------- 1 | >>> 2 | ... 3 | -------------------------------------------------------------------------------- /test/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/json2.js -------------------------------------------------------------------------------- /test/parse/t00.py: -------------------------------------------------------------------------------- 1 | y = 1 2 | -------------------------------------------------------------------------------- /test/parse/t01.py: -------------------------------------------------------------------------------- 1 | print x+2*3 2 | -------------------------------------------------------------------------------- /test/parse/t02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/parse/t02.py -------------------------------------------------------------------------------- /test/parse/t03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/parse/t03.py -------------------------------------------------------------------------------- /test/py/unittest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run/pkga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run/pkga/pkgb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run/pkga/pkgb/modc.py: -------------------------------------------------------------------------------- 1 | print "imported modc" 2 | stuff = 942 3 | things = "squirrel" 4 | -------------------------------------------------------------------------------- /test/run/t00.py: -------------------------------------------------------------------------------- 1 | print "hello world" 2 | -------------------------------------------------------------------------------- /test/run/t00.py.real: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /test/run/t01.py: -------------------------------------------------------------------------------- 1 | print 234 2 | -------------------------------------------------------------------------------- /test/run/t01.py.real: -------------------------------------------------------------------------------- 1 | 234 2 | -------------------------------------------------------------------------------- /test/run/t02.py: -------------------------------------------------------------------------------- 1 | a = 3 2 | print a 3 | -------------------------------------------------------------------------------- /test/run/t02.py.real: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/run/t03.py: -------------------------------------------------------------------------------- 1 | print 2+3 2 | -------------------------------------------------------------------------------- /test/run/t03.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t04.py: -------------------------------------------------------------------------------- 1 | print 4-1 2 | -------------------------------------------------------------------------------- /test/run/t04.py.real: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/run/t05.py: -------------------------------------------------------------------------------- 1 | print 3*7 2 | -------------------------------------------------------------------------------- /test/run/t05.py.real: -------------------------------------------------------------------------------- 1 | 21 2 | -------------------------------------------------------------------------------- /test/run/t06.py: -------------------------------------------------------------------------------- 1 | x=4 2 | x=x*3 3 | print x 4 | -------------------------------------------------------------------------------- /test/run/t06.py.real: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /test/run/t07.py: -------------------------------------------------------------------------------- 1 | x=4 2 | x*=3 3 | print x 4 | -------------------------------------------------------------------------------- /test/run/t07.py.real: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /test/run/t08.py: -------------------------------------------------------------------------------- 1 | x=2 2 | x+=3 3 | print x 4 | -------------------------------------------------------------------------------- /test/run/t08.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t09.py: -------------------------------------------------------------------------------- 1 | x="OK" 2 | print x 3 | -------------------------------------------------------------------------------- /test/run/t09.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t10.py: -------------------------------------------------------------------------------- 1 | a,b = 1,2 2 | print a+b 3 | -------------------------------------------------------------------------------- /test/run/t10.py.real: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/run/t100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t100.py -------------------------------------------------------------------------------- /test/run/t100.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 1 4 | 2 5 | -------------------------------------------------------------------------------- /test/run/t101.py: -------------------------------------------------------------------------------- 1 | for i in range(10): print i 2 | -------------------------------------------------------------------------------- /test/run/t101.py.real: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | -------------------------------------------------------------------------------- /test/run/t102.py: -------------------------------------------------------------------------------- 1 | for i in "skulpt": print i 2 | -------------------------------------------------------------------------------- /test/run/t102.py.real: -------------------------------------------------------------------------------- 1 | s 2 | k 3 | u 4 | l 5 | p 6 | t 7 | -------------------------------------------------------------------------------- /test/run/t103.py: -------------------------------------------------------------------------------- 1 | print [x*x for x in range(10) if x % 2 == 0] 2 | -------------------------------------------------------------------------------- /test/run/t103.py.real: -------------------------------------------------------------------------------- 1 | [0, 4, 16, 36, 64] 2 | -------------------------------------------------------------------------------- /test/run/t104.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t104.py -------------------------------------------------------------------------------- /test/run/t105.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t105.py -------------------------------------------------------------------------------- /test/run/t106.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t106.py -------------------------------------------------------------------------------- /test/run/t106.py.real: -------------------------------------------------------------------------------- 1 | [144, 196, 256, 324] 2 | -------------------------------------------------------------------------------- /test/run/t107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t107.py -------------------------------------------------------------------------------- /test/run/t108.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run/t108.py.real: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run/t108.trans: -------------------------------------------------------------------------------- 1 | Module(body=[]) 2 | -------------------------------------------------------------------------------- /test/run/t109.py: -------------------------------------------------------------------------------- 1 | print 3,4,5 2 | -------------------------------------------------------------------------------- /test/run/t109.py.real: -------------------------------------------------------------------------------- 1 | 3 4 5 2 | -------------------------------------------------------------------------------- /test/run/t11.py: -------------------------------------------------------------------------------- 1 | x=1 2 | if x == 1: 3 | print "yes" 4 | -------------------------------------------------------------------------------- /test/run/t11.py.real: -------------------------------------------------------------------------------- 1 | yes 2 | -------------------------------------------------------------------------------- /test/run/t110.py: -------------------------------------------------------------------------------- 1 | a = 1,2,3 2 | print a 3 | -------------------------------------------------------------------------------- /test/run/t110.py.real: -------------------------------------------------------------------------------- 1 | (1, 2, 3) 2 | -------------------------------------------------------------------------------- /test/run/t111.py: -------------------------------------------------------------------------------- 1 | a = 1, 2 | print a 3 | -------------------------------------------------------------------------------- /test/run/t111.py.real: -------------------------------------------------------------------------------- 1 | (1,) 2 | -------------------------------------------------------------------------------- /test/run/t112.py: -------------------------------------------------------------------------------- 1 | a = () 2 | print a 3 | -------------------------------------------------------------------------------- /test/run/t112.py.real: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /test/run/t113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t113.py -------------------------------------------------------------------------------- /test/run/t114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t114.py -------------------------------------------------------------------------------- /test/run/t115.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t115.py -------------------------------------------------------------------------------- /test/run/t116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t116.py -------------------------------------------------------------------------------- /test/run/t116.py.real: -------------------------------------------------------------------------------- 1 | [9, 2, 10, 4, 11, 6] 2 | -------------------------------------------------------------------------------- /test/run/t117.py: -------------------------------------------------------------------------------- 1 | s = 'abcd' 2 | print s[::-1] 3 | -------------------------------------------------------------------------------- /test/run/t117.py.real: -------------------------------------------------------------------------------- 1 | dcba 2 | -------------------------------------------------------------------------------- /test/run/t118.py: -------------------------------------------------------------------------------- 1 | s='abcd' 2 | print s[::2] 3 | -------------------------------------------------------------------------------- /test/run/t118.py.real: -------------------------------------------------------------------------------- 1 | ac 2 | -------------------------------------------------------------------------------- /test/run/t119.py: -------------------------------------------------------------------------------- 1 | a = range(4) 2 | del a[::2] 3 | print a 4 | -------------------------------------------------------------------------------- /test/run/t119.py.real: -------------------------------------------------------------------------------- 1 | [1, 3] 2 | -------------------------------------------------------------------------------- /test/run/t12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t12.py -------------------------------------------------------------------------------- /test/run/t12.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t120.py: -------------------------------------------------------------------------------- 1 | print range(10)[slice(0, 5, 2)] 2 | -------------------------------------------------------------------------------- /test/run/t120.py.real: -------------------------------------------------------------------------------- 1 | [0, 2, 4] 2 | -------------------------------------------------------------------------------- /test/run/t121.py: -------------------------------------------------------------------------------- 1 | print slice(1) 2 | -------------------------------------------------------------------------------- /test/run/t122.py: -------------------------------------------------------------------------------- 1 | print slice(1,2) 2 | -------------------------------------------------------------------------------- /test/run/t122.py.real: -------------------------------------------------------------------------------- 1 | slice(1, 2, None) 2 | -------------------------------------------------------------------------------- /test/run/t123.py: -------------------------------------------------------------------------------- 1 | print slice(1,2,3) 2 | -------------------------------------------------------------------------------- /test/run/t123.py.real: -------------------------------------------------------------------------------- 1 | slice(1, 2, 3) 2 | -------------------------------------------------------------------------------- /test/run/t124.py: -------------------------------------------------------------------------------- 1 | a = [1,2,3,4,5] 2 | print a[::-1] 3 | -------------------------------------------------------------------------------- /test/run/t124.py.real: -------------------------------------------------------------------------------- 1 | [5, 4, 3, 2, 1] 2 | -------------------------------------------------------------------------------- /test/run/t125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t125.py -------------------------------------------------------------------------------- /test/run/t126.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t126.py -------------------------------------------------------------------------------- /test/run/t127.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t127.py -------------------------------------------------------------------------------- /test/run/t128.py: -------------------------------------------------------------------------------- 1 | a = (1,2,3,4,5,6,7,8) 2 | print a[5::-4] 3 | -------------------------------------------------------------------------------- /test/run/t128.py.real: -------------------------------------------------------------------------------- 1 | (6, 2) 2 | -------------------------------------------------------------------------------- /test/run/t129.py: -------------------------------------------------------------------------------- 1 | a = range(30) 2 | print a[19::-7] 3 | -------------------------------------------------------------------------------- /test/run/t129.py.real: -------------------------------------------------------------------------------- 1 | [19, 12, 5] 2 | -------------------------------------------------------------------------------- /test/run/t13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t13.py -------------------------------------------------------------------------------- /test/run/t13.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t130.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t130.py -------------------------------------------------------------------------------- /test/run/t132.py: -------------------------------------------------------------------------------- 1 | print {1:'stuff', 'ok':4} 2 | -------------------------------------------------------------------------------- /test/run/t132.py.real: -------------------------------------------------------------------------------- 1 | {1: 'stuff', 'ok': 4} 2 | -------------------------------------------------------------------------------- /test/run/t133.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t133.py -------------------------------------------------------------------------------- /test/run/t134.py: -------------------------------------------------------------------------------- 1 | print 5&7 2 | -------------------------------------------------------------------------------- /test/run/t134.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t135.py: -------------------------------------------------------------------------------- 1 | print 2^7 2 | -------------------------------------------------------------------------------- /test/run/t135.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t136.py: -------------------------------------------------------------------------------- 1 | print 7^2&2 2 | -------------------------------------------------------------------------------- /test/run/t136.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t137.py: -------------------------------------------------------------------------------- 1 | print 7^2|4 2 | -------------------------------------------------------------------------------- /test/run/t137.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t138.py: -------------------------------------------------------------------------------- 1 | x=4 2 | x|=1 3 | print x 4 | -------------------------------------------------------------------------------- /test/run/t138.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t139.py: -------------------------------------------------------------------------------- 1 | x = 5 2 | x &= 7 3 | print x 4 | -------------------------------------------------------------------------------- /test/run/t139.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t14.py -------------------------------------------------------------------------------- /test/run/t14.py.real: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /test/run/t140.py: -------------------------------------------------------------------------------- 1 | x = 2 2 | x ^= 7 3 | print x 4 | -------------------------------------------------------------------------------- /test/run/t140.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t141.py: -------------------------------------------------------------------------------- 1 | print 1|2|3|4|5|6|0x80 2 | -------------------------------------------------------------------------------- /test/run/t141.py.real: -------------------------------------------------------------------------------- 1 | 135 2 | -------------------------------------------------------------------------------- /test/run/t142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t142.py -------------------------------------------------------------------------------- /test/run/t143.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t143.py -------------------------------------------------------------------------------- /test/run/t144.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t144.py -------------------------------------------------------------------------------- /test/run/t144.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t145.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t145.py -------------------------------------------------------------------------------- /test/run/t145.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t146.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t146.py -------------------------------------------------------------------------------- /test/run/t146.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t147.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t147.py -------------------------------------------------------------------------------- /test/run/t148.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t148.py -------------------------------------------------------------------------------- /test/run/t148.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t149.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t149.py -------------------------------------------------------------------------------- /test/run/t149.py.real: -------------------------------------------------------------------------------- 1 | [0, 1 2 | 4 3 | 0 4 | 1 5 | 3 6 | -------------------------------------------------------------------------------- /test/run/t15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t15.py -------------------------------------------------------------------------------- /test/run/t15.py.real: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /test/run/t150.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t150.py -------------------------------------------------------------------------------- /test/run/t150.py.real: -------------------------------------------------------------------------------- 1 | [] 2 | 0 3 | -------------------------------------------------------------------------------- /test/run/t151.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t151.py -------------------------------------------------------------------------------- /test/run/t151.py.real: -------------------------------------------------------------------------------- 1 | [0, 3 2 | 2 3 | 0 4 | 3 5 | 3 6 | -------------------------------------------------------------------------------- /test/run/t152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t152.py -------------------------------------------------------------------------------- /test/run/t153.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t153.py -------------------------------------------------------------------------------- /test/run/t153.py.real: -------------------------------------------------------------------------------- 1 | [-8, 2 | 4 3 | -8 4 | -7 5 | -5 6 | -------------------------------------------------------------------------------- /test/run/t154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t154.py -------------------------------------------------------------------------------- /test/run/t154.py.real: -------------------------------------------------------------------------------- 1 | [-4, 2 | 4 3 | -4 4 | -5 5 | -7 6 | -------------------------------------------------------------------------------- /test/run/t155.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t155.py -------------------------------------------------------------------------------- /test/run/t155.py.real: -------------------------------------------------------------------------------- 1 | [] 2 | 0 3 | -------------------------------------------------------------------------------- /test/run/t156.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t156.py -------------------------------------------------------------------------------- /test/run/t156.py.real: -------------------------------------------------------------------------------- 1 | [] 2 | 0 3 | -------------------------------------------------------------------------------- /test/run/t157.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t157.py -------------------------------------------------------------------------------- /test/run/t158.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t158.py -------------------------------------------------------------------------------- /test/run/t159.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t159.py -------------------------------------------------------------------------------- /test/run/t16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t16.py -------------------------------------------------------------------------------- /test/run/t16.py.real: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /test/run/t160.py: -------------------------------------------------------------------------------- 1 | print [c for c in "asdf"] 2 | -------------------------------------------------------------------------------- /test/run/t161.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t161.py -------------------------------------------------------------------------------- /test/run/t162.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t162.py -------------------------------------------------------------------------------- /test/run/t163.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t163.py -------------------------------------------------------------------------------- /test/run/t164.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t164.py -------------------------------------------------------------------------------- /test/run/t165.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t165.py -------------------------------------------------------------------------------- /test/run/t166.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t166.py -------------------------------------------------------------------------------- /test/run/t167.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t167.py -------------------------------------------------------------------------------- /test/run/t168.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t168.py -------------------------------------------------------------------------------- /test/run/t169.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t169.py -------------------------------------------------------------------------------- /test/run/t17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t17.py -------------------------------------------------------------------------------- /test/run/t17.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t170.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t170.py -------------------------------------------------------------------------------- /test/run/t171.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t171.py -------------------------------------------------------------------------------- /test/run/t172.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t172.py -------------------------------------------------------------------------------- /test/run/t172.py.real: -------------------------------------------------------------------------------- 1 | dog:'cat':23456:e8d4a50fff 2 | -------------------------------------------------------------------------------- /test/run/t173.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t173.py -------------------------------------------------------------------------------- /test/run/t173.py.real: -------------------------------------------------------------------------------- 1 | +hello+ 2 | +10+ 3 | a 4 | " 5 | $ 6 | 10 7 |  8 | -------------------------------------------------------------------------------- /test/run/t174.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t174.py -------------------------------------------------------------------------------- /test/run/t175.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t175.py -------------------------------------------------------------------------------- /test/run/t175.py.real: -------------------------------------------------------------------------------- 1 | 4 2 | stuff 3 | -------------------------------------------------------------------------------- /test/run/t176.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t176.py -------------------------------------------------------------------------------- /test/run/t176.py.real: -------------------------------------------------------------------------------- 1 | 65 2 | -------------------------------------------------------------------------------- /test/run/t177.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t177.py -------------------------------------------------------------------------------- /test/run/t177.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 1 4 | 2 5 | -------------------------------------------------------------------------------- /test/run/t178.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t178.py -------------------------------------------------------------------------------- /test/run/t179.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t179.py -------------------------------------------------------------------------------- /test/run/t18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t18.py -------------------------------------------------------------------------------- /test/run/t18.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t180.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t180.py -------------------------------------------------------------------------------- /test/run/t180.py.real: -------------------------------------------------------------------------------- 1 | 0 2 | 100 3 | -------------------------------------------------------------------------------- /test/run/t181.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t181.py -------------------------------------------------------------------------------- /test/run/t181.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/run/t182.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t182.py -------------------------------------------------------------------------------- /test/run/t182.py.real: -------------------------------------------------------------------------------- 1 | [0, 1, 2, 3, 4] 2 | -------------------------------------------------------------------------------- /test/run/t183.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t183.py -------------------------------------------------------------------------------- /test/run/t184.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t184.py -------------------------------------------------------------------------------- /test/run/t184.py.real: -------------------------------------------------------------------------------- 1 | [0, 1, 2, 3, 4] 2 | -------------------------------------------------------------------------------- /test/run/t185.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t185.py -------------------------------------------------------------------------------- /test/run/t186.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t186.py -------------------------------------------------------------------------------- /test/run/t186.py.real: -------------------------------------------------------------------------------- 1 | cheese 2 | 1 3 | -------------------------------------------------------------------------------- /test/run/t187.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t187.py -------------------------------------------------------------------------------- /test/run/t187.py.real: -------------------------------------------------------------------------------- 1 | cheese 2 | 1 3 | -------------------------------------------------------------------------------- /test/run/t188.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t188.py -------------------------------------------------------------------------------- /test/run/t189.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t189.py -------------------------------------------------------------------------------- /test/run/t189.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 20 4 | 21 5 | -------------------------------------------------------------------------------- /test/run/t19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t19.py -------------------------------------------------------------------------------- /test/run/t19.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t190.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t190.py -------------------------------------------------------------------------------- /test/run/t190.py.real: -------------------------------------------------------------------------------- 1 | [1, 3, 5] 2 | -------------------------------------------------------------------------------- /test/run/t191.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t191.py -------------------------------------------------------------------------------- /test/run/t191.py.real: -------------------------------------------------------------------------------- 1 | [1, 2] 2 | -------------------------------------------------------------------------------- /test/run/t192.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t192.py -------------------------------------------------------------------------------- /test/run/t192.py.real: -------------------------------------------------------------------------------- 1 | [1, 2, 3] 2 | -------------------------------------------------------------------------------- /test/run/t193.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t193.py -------------------------------------------------------------------------------- /test/run/t194.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t194.py -------------------------------------------------------------------------------- /test/run/t195.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t195.py -------------------------------------------------------------------------------- /test/run/t196.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t196.py -------------------------------------------------------------------------------- /test/run/t196.py.real: -------------------------------------------------------------------------------- 1 | [3] 2 | -------------------------------------------------------------------------------- /test/run/t197.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t197.py -------------------------------------------------------------------------------- /test/run/t198.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t198.py -------------------------------------------------------------------------------- /test/run/t198.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /test/run/t199.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t199.py -------------------------------------------------------------------------------- /test/run/t199.py.real: -------------------------------------------------------------------------------- 1 | 0 2 | 2 3 | 4 4 | -------------------------------------------------------------------------------- /test/run/t20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t20.py -------------------------------------------------------------------------------- /test/run/t20.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t200.py -------------------------------------------------------------------------------- /test/run/t201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t201.py -------------------------------------------------------------------------------- /test/run/t202.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t202.py -------------------------------------------------------------------------------- /test/run/t202.py.real: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run/t203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t203.py -------------------------------------------------------------------------------- /test/run/t204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t204.py -------------------------------------------------------------------------------- /test/run/t205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t205.py -------------------------------------------------------------------------------- /test/run/t206.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t206.py -------------------------------------------------------------------------------- /test/run/t207.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t207.py -------------------------------------------------------------------------------- /test/run/t208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t208.py -------------------------------------------------------------------------------- /test/run/t208.py.real: -------------------------------------------------------------------------------- 1 | 2 | abcdefghjijk 3 | -------------------------------------------------------------------------------- /test/run/t209.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t209.py -------------------------------------------------------------------------------- /test/run/t209.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t21.py -------------------------------------------------------------------------------- /test/run/t21.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/run/t210.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t210.py -------------------------------------------------------------------------------- /test/run/t210.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t211.py -------------------------------------------------------------------------------- /test/run/t211.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t212.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t212.py -------------------------------------------------------------------------------- /test/run/t212.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t213.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t213.py -------------------------------------------------------------------------------- /test/run/t213.py.real: -------------------------------------------------------------------------------- 1 | OK True False 2 | -------------------------------------------------------------------------------- /test/run/t214.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t214.py -------------------------------------------------------------------------------- /test/run/t215.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t215.py -------------------------------------------------------------------------------- /test/run/t216.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t216.py -------------------------------------------------------------------------------- /test/run/t216.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t217.py -------------------------------------------------------------------------------- /test/run/t217.py.real: -------------------------------------------------------------------------------- 1 | x OK 2 | -------------------------------------------------------------------------------- /test/run/t218.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t218.py -------------------------------------------------------------------------------- /test/run/t218.py.real: -------------------------------------------------------------------------------- 1 | wee 2 | <__main__.X object> 3 | -------------------------------------------------------------------------------- /test/run/t218.py.real.force: -------------------------------------------------------------------------------- 1 | wee 2 | <__main__.X object> 3 | -------------------------------------------------------------------------------- /test/run/t219.py: -------------------------------------------------------------------------------- 1 | import sys 2 | print [x.replace("\\", "/") for x in sys.argv] 3 | -------------------------------------------------------------------------------- /test/run/t219.py.real: -------------------------------------------------------------------------------- 1 | ['test/run/t219.py'] 2 | -------------------------------------------------------------------------------- /test/run/t22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t22.py -------------------------------------------------------------------------------- /test/run/t22.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/run/t220.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t220.py -------------------------------------------------------------------------------- /test/run/t220.py.real: -------------------------------------------------------------------------------- 1 | 4 ['stuff'] {'things': 4} 2 | -------------------------------------------------------------------------------- /test/run/t221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t221.py -------------------------------------------------------------------------------- /test/run/t221.py.real: -------------------------------------------------------------------------------- 1 | 444 2 | OK: wee, 444 3 | -------------------------------------------------------------------------------- /test/run/t221_sub.py.real: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run/t222.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t222.py -------------------------------------------------------------------------------- /test/run/t222.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | 8 3 | -------------------------------------------------------------------------------- /test/run/t223.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t223.py -------------------------------------------------------------------------------- /test/run/t224.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t224.py -------------------------------------------------------------------------------- /test/run/t225.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t225.py -------------------------------------------------------------------------------- /test/run/t225.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | after 3 | -------------------------------------------------------------------------------- /test/run/t226.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t226.py -------------------------------------------------------------------------------- /test/run/t227.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t227.py -------------------------------------------------------------------------------- /test/run/t228.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t228.py -------------------------------------------------------------------------------- /test/run/t229.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t229.py -------------------------------------------------------------------------------- /test/run/t229.py.real: -------------------------------------------------------------------------------- 1 | 14 2 | OK 3 | -------------------------------------------------------------------------------- /test/run/t23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t23.py -------------------------------------------------------------------------------- /test/run/t23.py.real: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /test/run/t230.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t230.py -------------------------------------------------------------------------------- /test/run/t230.py.real: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | -------------------------------------------------------------------------------- /test/run/t231.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t231.py -------------------------------------------------------------------------------- /test/run/t232.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t232.py -------------------------------------------------------------------------------- /test/run/t233.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t233.py -------------------------------------------------------------------------------- /test/run/t234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t234.py -------------------------------------------------------------------------------- /test/run/t235.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t235.py -------------------------------------------------------------------------------- /test/run/t236.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t236.py -------------------------------------------------------------------------------- /test/run/t236.py.real: -------------------------------------------------------------------------------- 1 | imported modc 2 | 942 3 | squirrel 4 | -------------------------------------------------------------------------------- /test/run/t237.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t237.py -------------------------------------------------------------------------------- /test/run/t237.py.real: -------------------------------------------------------------------------------- 1 | imported modc 2 | 942 squirrel 3 | -------------------------------------------------------------------------------- /test/run/t238.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t238.py -------------------------------------------------------------------------------- /test/run/t238.py.real: -------------------------------------------------------------------------------- 1 | wee 2 | waa 3 | stuff 4 | -------------------------------------------------------------------------------- /test/run/t239.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t239.py -------------------------------------------------------------------------------- /test/run/t24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t24.py -------------------------------------------------------------------------------- /test/run/t24.py.real: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /test/run/t240.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t240.py -------------------------------------------------------------------------------- /test/run/t241.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t241.py -------------------------------------------------------------------------------- /test/run/t242.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t242.py -------------------------------------------------------------------------------- /test/run/t243.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t243.py -------------------------------------------------------------------------------- /test/run/t244.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t244.py -------------------------------------------------------------------------------- /test/run/t245.py: -------------------------------------------------------------------------------- 1 | import this 2 | -------------------------------------------------------------------------------- /test/run/t246.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t246.py -------------------------------------------------------------------------------- /test/run/t247.py: -------------------------------------------------------------------------------- 1 | print "abc"[1.5] 2 | -------------------------------------------------------------------------------- /test/run/t248.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t248.py -------------------------------------------------------------------------------- /test/run/t248.py.real: -------------------------------------------------------------------------------- 1 | Hello 2 | stuff 3 | things 4 | -------------------------------------------------------------------------------- /test/run/t249.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t249.py -------------------------------------------------------------------------------- /test/run/t249.py.real: -------------------------------------------------------------------------------- 1 | var1 is a string 2 | -------------------------------------------------------------------------------- /test/run/t25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t25.py -------------------------------------------------------------------------------- /test/run/t25.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t250.py -------------------------------------------------------------------------------- /test/run/t251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t251.py -------------------------------------------------------------------------------- /test/run/t252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t252.py -------------------------------------------------------------------------------- /test/run/t253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t253.py -------------------------------------------------------------------------------- /test/run/t254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t254.py -------------------------------------------------------------------------------- /test/run/t254.py.real: -------------------------------------------------------------------------------- 1 | 4 2 | 4 3 | -------------------------------------------------------------------------------- /test/run/t255.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t255.py -------------------------------------------------------------------------------- /test/run/t255.py.real: -------------------------------------------------------------------------------- 1 | False 2 | -------------------------------------------------------------------------------- /test/run/t256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t256.py -------------------------------------------------------------------------------- /test/run/t256.py.real: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /test/run/t257.py: -------------------------------------------------------------------------------- 1 | print [] or 5 2 | -------------------------------------------------------------------------------- /test/run/t257.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t258.py -------------------------------------------------------------------------------- /test/run/t259.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t259.py -------------------------------------------------------------------------------- /test/run/t26.py: -------------------------------------------------------------------------------- 1 | x = [2,4,6] 2 | print x[1] 3 | -------------------------------------------------------------------------------- /test/run/t26.py.real: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /test/run/t260.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t260.py -------------------------------------------------------------------------------- /test/run/t261.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t261.py -------------------------------------------------------------------------------- /test/run/t261.py.real: -------------------------------------------------------------------------------- 1 | hello 2 | [0, 4, 5] 3 | -------------------------------------------------------------------------------- /test/run/t262.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t262.py -------------------------------------------------------------------------------- /test/run/t263.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t263.py -------------------------------------------------------------------------------- /test/run/t264.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t264.py -------------------------------------------------------------------------------- /test/run/t264.py.real: -------------------------------------------------------------------------------- 1 | inf 2 | -inf 3 | -------------------------------------------------------------------------------- /test/run/t265.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t265.py -------------------------------------------------------------------------------- /test/run/t266.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t266.py -------------------------------------------------------------------------------- /test/run/t266.py.real: -------------------------------------------------------------------------------- 1 | False 2 | This statement evaluates to True. 3 | -------------------------------------------------------------------------------- /test/run/t267.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t267.py -------------------------------------------------------------------------------- /test/run/t268.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t268.py -------------------------------------------------------------------------------- /test/run/t268.py.real: -------------------------------------------------------------------------------- 1 | True 2 | False 3 | -------------------------------------------------------------------------------- /test/run/t269.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t269.py -------------------------------------------------------------------------------- /test/run/t269.py.real: -------------------------------------------------------------------------------- 1 | -2 2 | -1 3 | -------------------------------------------------------------------------------- /test/run/t27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t27.py -------------------------------------------------------------------------------- /test/run/t27.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t270.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t270.py -------------------------------------------------------------------------------- /test/run/t271.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t271.py -------------------------------------------------------------------------------- /test/run/t272.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t272.py -------------------------------------------------------------------------------- /test/run/t273.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t273.py -------------------------------------------------------------------------------- /test/run/t274.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t274.py -------------------------------------------------------------------------------- /test/run/t275.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t275.py -------------------------------------------------------------------------------- /test/run/t276.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t276.py -------------------------------------------------------------------------------- /test/run/t277.py: -------------------------------------------------------------------------------- 1 | # nl continuation 2 | 3 | x = "stuff \ 4 | and \ 5 | things" 6 | print x 7 | -------------------------------------------------------------------------------- /test/run/t277.py.real: -------------------------------------------------------------------------------- 1 | stuff and things 2 | -------------------------------------------------------------------------------- /test/run/t278.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t278.py -------------------------------------------------------------------------------- /test/run/t278.py.real: -------------------------------------------------------------------------------- 1 | 2 | The "quick" 3 | brown fox 4 | jumps over 5 | the 'lazy' dog. 6 | 7 | -------------------------------------------------------------------------------- /test/run/t279.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t279.py -------------------------------------------------------------------------------- /test/run/t279_sub.py.real: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run/t28.py: -------------------------------------------------------------------------------- 1 | z = 0 2 | for x in [1,2,3]: 3 | z += x 4 | print z 5 | -------------------------------------------------------------------------------- /test/run/t28.py.real: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /test/run/t280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t280.py -------------------------------------------------------------------------------- /test/run/t281.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t281.py -------------------------------------------------------------------------------- /test/run/t281.py.real: -------------------------------------------------------------------------------- 1 | 5 6 7 2 | -------------------------------------------------------------------------------- /test/run/t282.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t282.py -------------------------------------------------------------------------------- /test/run/t283.py: -------------------------------------------------------------------------------- 1 | def f(**kw): 2 | print kw 3 | 4 | f(a=4, b=5) 5 | -------------------------------------------------------------------------------- /test/run/t283.py.real: -------------------------------------------------------------------------------- 1 | {'a': 4, 'b': 5} 2 | -------------------------------------------------------------------------------- /test/run/t284.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t284.py -------------------------------------------------------------------------------- /test/run/t285.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t285.py -------------------------------------------------------------------------------- /test/run/t286.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t286.py -------------------------------------------------------------------------------- /test/run/t286.py.real: -------------------------------------------------------------------------------- 1 | Yes 2 | No 3 | -------------------------------------------------------------------------------- /test/run/t287.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t287.py -------------------------------------------------------------------------------- /test/run/t288.py: -------------------------------------------------------------------------------- 1 | d = {} 2 | d["__proto__"]="testing" 3 | print d 4 | -------------------------------------------------------------------------------- /test/run/t288.py.real: -------------------------------------------------------------------------------- 1 | {'__proto__': 'testing'} 2 | -------------------------------------------------------------------------------- /test/run/t289.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t289.py -------------------------------------------------------------------------------- /test/run/t289.py.real: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/run/t289.py.real.force: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/run/t29.py: -------------------------------------------------------------------------------- 1 | z = 0 2 | for x in range(1,4): 3 | z += x 4 | print z 5 | -------------------------------------------------------------------------------- /test/run/t29.py.real: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /test/run/t290.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t290.py -------------------------------------------------------------------------------- /test/run/t291.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t291.py -------------------------------------------------------------------------------- /test/run/t292.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t292.py -------------------------------------------------------------------------------- /test/run/t293.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t293.py -------------------------------------------------------------------------------- /test/run/t294.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t294.py -------------------------------------------------------------------------------- /test/run/t295.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t295.py -------------------------------------------------------------------------------- /test/run/t296.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t296.py -------------------------------------------------------------------------------- /test/run/t297.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t297.py -------------------------------------------------------------------------------- /test/run/t298.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t298.py -------------------------------------------------------------------------------- /test/run/t299.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t299.py -------------------------------------------------------------------------------- /test/run/t30.py: -------------------------------------------------------------------------------- 1 | x = {'a':'OK'} 2 | print x['a'] 3 | -------------------------------------------------------------------------------- /test/run/t30.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t300.py -------------------------------------------------------------------------------- /test/run/t301.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t301.py -------------------------------------------------------------------------------- /test/run/t302.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t302.py -------------------------------------------------------------------------------- /test/run/t303.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t303.py -------------------------------------------------------------------------------- /test/run/t304.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t304.py -------------------------------------------------------------------------------- /test/run/t304.py.real: -------------------------------------------------------------------------------- 1 | set([1, 2, 3]) 2 | 1 3 | 3 4 | -------------------------------------------------------------------------------- /test/run/t305.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t305.py -------------------------------------------------------------------------------- /test/run/t306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t306.py -------------------------------------------------------------------------------- /test/run/t307.py: -------------------------------------------------------------------------------- 1 | # empty set creation 2 | print set() 3 | -------------------------------------------------------------------------------- /test/run/t307.py.real: -------------------------------------------------------------------------------- 1 | set([]) 2 | -------------------------------------------------------------------------------- /test/run/t308.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t308.py -------------------------------------------------------------------------------- /test/run/t309.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t309.py -------------------------------------------------------------------------------- /test/run/t31.py: -------------------------------------------------------------------------------- 1 | print "1234"[1:3] 2 | -------------------------------------------------------------------------------- /test/run/t31.py.real: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /test/run/t310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t310.py -------------------------------------------------------------------------------- /test/run/t311.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t311.py -------------------------------------------------------------------------------- /test/run/t312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t312.py -------------------------------------------------------------------------------- /test/run/t313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t313.py -------------------------------------------------------------------------------- /test/run/t314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t314.py -------------------------------------------------------------------------------- /test/run/t315.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t315.py -------------------------------------------------------------------------------- /test/run/t315.py.real: -------------------------------------------------------------------------------- 1 | [1] 2 | [1, 2] 3 | -------------------------------------------------------------------------------- /test/run/t316.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t316.py -------------------------------------------------------------------------------- /test/run/t316.py.real: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /test/run/t317.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t317.py -------------------------------------------------------------------------------- /test/run/t317.py.real: -------------------------------------------------------------------------------- 1 | 1,2 2 | 1,2 3 | -------------------------------------------------------------------------------- /test/run/t318.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t318.py -------------------------------------------------------------------------------- /test/run/t318.py.real: -------------------------------------------------------------------------------- 1 | ( 2 | 1 3 | + 4 | 1 5 | ) 6 | -------------------------------------------------------------------------------- /test/run/t319.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t319.py -------------------------------------------------------------------------------- /test/run/t319.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | None 3 | -------------------------------------------------------------------------------- /test/run/t32.py: -------------------------------------------------------------------------------- 1 | print "1234"[-3:3] 2 | -------------------------------------------------------------------------------- /test/run/t32.py.real: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /test/run/t320.py: -------------------------------------------------------------------------------- 1 | print "" in "abc" 2 | -------------------------------------------------------------------------------- /test/run/t320.py.real: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /test/run/t321.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t321.py -------------------------------------------------------------------------------- /test/run/t321.py.real: -------------------------------------------------------------------------------- 1 | True 2 | False 3 | -------------------------------------------------------------------------------- /test/run/t322.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t322.py -------------------------------------------------------------------------------- /test/run/t322.py.real: -------------------------------------------------------------------------------- 1 | 19 2 | 19 3 | 6 4 | 3 5 | PK 6 | -------------------------------------------------------------------------------- /test/run/t323.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t323.py -------------------------------------------------------------------------------- /test/run/t323.py.real: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /test/run/t324.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t324.py -------------------------------------------------------------------------------- /test/run/t325.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t325.py -------------------------------------------------------------------------------- /test/run/t325.py.real: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /test/run/t326.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t326.py -------------------------------------------------------------------------------- /test/run/t327.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t327.py -------------------------------------------------------------------------------- /test/run/t328.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t328.py -------------------------------------------------------------------------------- /test/run/t329.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t329.py -------------------------------------------------------------------------------- /test/run/t33.py: -------------------------------------------------------------------------------- 1 | print [1,2,"OK",4][-3:3][1] 2 | -------------------------------------------------------------------------------- /test/run/t33.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t330.py: -------------------------------------------------------------------------------- 1 | x = "foo bar baz".split() 2 | print x 3 | -------------------------------------------------------------------------------- /test/run/t331.py: -------------------------------------------------------------------------------- 1 | print sum([1,2,3]) 2 | -------------------------------------------------------------------------------- /test/run/t331.py.real: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /test/run/t332.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t332.py -------------------------------------------------------------------------------- /test/run/t333.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t333.py -------------------------------------------------------------------------------- /test/run/t334.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t334.py -------------------------------------------------------------------------------- /test/run/t334.py.real: -------------------------------------------------------------------------------- 1 | One 2 | Two 3 | Three 4 | Four 5 | Five 6 | SystemExit: on line 19 7 | -------------------------------------------------------------------------------- /test/run/t335.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t335.py -------------------------------------------------------------------------------- /test/run/t336.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t336.py -------------------------------------------------------------------------------- /test/run/t336.py.real: -------------------------------------------------------------------------------- 1 | Is false 2 | -------------------------------------------------------------------------------- /test/run/t337.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t337.py -------------------------------------------------------------------------------- /test/run/t338.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t338.py -------------------------------------------------------------------------------- /test/run/t339.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t339.py -------------------------------------------------------------------------------- /test/run/t34.py: -------------------------------------------------------------------------------- 1 | n = 0 2 | for x in range(0,10,2): 3 | n += 1 4 | print n 5 | -------------------------------------------------------------------------------- /test/run/t34.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t340.py -------------------------------------------------------------------------------- /test/run/t341.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t341.py -------------------------------------------------------------------------------- /test/run/t342.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t342.py -------------------------------------------------------------------------------- /test/run/t344.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t344.py -------------------------------------------------------------------------------- /test/run/t345.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t345.py -------------------------------------------------------------------------------- /test/run/t346.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t346.py -------------------------------------------------------------------------------- /test/run/t347.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t347.py -------------------------------------------------------------------------------- /test/run/t348.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t348.py -------------------------------------------------------------------------------- /test/run/t348.py.real: -------------------------------------------------------------------------------- 1 | SubClassA 2 | -------------------------------------------------------------------------------- /test/run/t349.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t349.py -------------------------------------------------------------------------------- /test/run/t35.py: -------------------------------------------------------------------------------- 1 | print max(3,8,2,6) 2 | -------------------------------------------------------------------------------- /test/run/t35.py.real: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /test/run/t350.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t350.py -------------------------------------------------------------------------------- /test/run/t351.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t351.py -------------------------------------------------------------------------------- /test/run/t352.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t352.py -------------------------------------------------------------------------------- /test/run/t352.py.real: -------------------------------------------------------------------------------- 1 | 3 2 | 3 3 | 3 4 | -------------------------------------------------------------------------------- /test/run/t353.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t353.py -------------------------------------------------------------------------------- /test/run/t353.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: ValueError: chr() arg not in range(256) on line 2 2 | -------------------------------------------------------------------------------- /test/run/t353.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: ValueError: chr() arg not in range(256) on line 2 2 | -------------------------------------------------------------------------------- /test/run/t354.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t354.py -------------------------------------------------------------------------------- /test/run/t355.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t355.py -------------------------------------------------------------------------------- /test/run/t356.py: -------------------------------------------------------------------------------- 1 | d = {{1: 2}: 3} 2 | print d 3 | d[[4, 5]] = 6 4 | -------------------------------------------------------------------------------- /test/run/t356.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: unhashable type: 'dict' on line 1 2 | -------------------------------------------------------------------------------- /test/run/t356.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: unhashable type: 'dict' on line 1 2 | -------------------------------------------------------------------------------- /test/run/t357.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t357.py -------------------------------------------------------------------------------- /test/run/t358.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t358.py -------------------------------------------------------------------------------- /test/run/t358.py.real: -------------------------------------------------------------------------------- 1 | 3 2 | 2 3 | -------------------------------------------------------------------------------- /test/run/t359.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t359.py -------------------------------------------------------------------------------- /test/run/t36.py: -------------------------------------------------------------------------------- 1 | print min(3,8,2,6) 2 | -------------------------------------------------------------------------------- /test/run/t36.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/run/t360.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t360.py -------------------------------------------------------------------------------- /test/run/t360.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: KeyError: (1, 2) on line 2 2 | -------------------------------------------------------------------------------- /test/run/t360.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: KeyError: (1, 2) on line 2 2 | -------------------------------------------------------------------------------- /test/run/t361.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t361.py -------------------------------------------------------------------------------- /test/run/t362.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t362.py -------------------------------------------------------------------------------- /test/run/t362.py.real: -------------------------------------------------------------------------------- 1 | f(3) called 2 | [3] 3 | -------------------------------------------------------------------------------- /test/run/t363.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t363.py -------------------------------------------------------------------------------- /test/run/t364.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t364.py -------------------------------------------------------------------------------- /test/run/t364.py.real: -------------------------------------------------------------------------------- 1 | \W 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/run/t365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t365.py -------------------------------------------------------------------------------- /test/run/t366.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t366.py -------------------------------------------------------------------------------- /test/run/t367.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t367.py -------------------------------------------------------------------------------- /test/run/t368.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t368.py -------------------------------------------------------------------------------- /test/run/t368.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: 'int' object is not iterable on line 1 2 | -------------------------------------------------------------------------------- /test/run/t368.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: 'int' object is not iterable on line 1 2 | -------------------------------------------------------------------------------- /test/run/t369.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t369.py -------------------------------------------------------------------------------- /test/run/t37.py: -------------------------------------------------------------------------------- 1 | for k in {'OK':0}: print k 2 | -------------------------------------------------------------------------------- /test/run/t37.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t370.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t370.py -------------------------------------------------------------------------------- /test/run/t371.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t371.py -------------------------------------------------------------------------------- /test/run/t372.py: -------------------------------------------------------------------------------- 1 | print int('22',2) 2 | -------------------------------------------------------------------------------- /test/run/t373.py: -------------------------------------------------------------------------------- 1 | print int(10,2) 2 | -------------------------------------------------------------------------------- /test/run/t374.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t374.py -------------------------------------------------------------------------------- /test/run/t375.py: -------------------------------------------------------------------------------- 1 | l = [] 2 | a = l.pop() 3 | print a 4 | -------------------------------------------------------------------------------- /test/run/t376.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t376.py -------------------------------------------------------------------------------- /test/run/t376.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: object of type 'NoLen' has no len() on line 21 2 | -------------------------------------------------------------------------------- /test/run/t377.py: -------------------------------------------------------------------------------- 1 | a = [1, 2, 3] 2 | a.extend(4) 3 | print a 4 | -------------------------------------------------------------------------------- /test/run/t377.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: 'int' object is not iterable on line 2 2 | -------------------------------------------------------------------------------- /test/run/t377.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: 'int' object is not iterable on line 2 2 | -------------------------------------------------------------------------------- /test/run/t378.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t378.py -------------------------------------------------------------------------------- /test/run/t379.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t379.py -------------------------------------------------------------------------------- /test/run/t38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t38.py -------------------------------------------------------------------------------- /test/run/t38.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t380.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t380.py -------------------------------------------------------------------------------- /test/run/t381.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t381.py -------------------------------------------------------------------------------- /test/run/t381.py.real: -------------------------------------------------------------------------------- 1 | 3 2 | 3 3 | 3 4 | -------------------------------------------------------------------------------- /test/run/t382.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t382.py -------------------------------------------------------------------------------- /test/run/t383.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t383.py -------------------------------------------------------------------------------- /test/run/t383.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: rad must be a number on line 2 2 | -------------------------------------------------------------------------------- /test/run/t383.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: rad must be a number on line 2 2 | -------------------------------------------------------------------------------- /test/run/t384.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t384.py -------------------------------------------------------------------------------- /test/run/t385.py: -------------------------------------------------------------------------------- 1 | print 3 >> -3 2 | -------------------------------------------------------------------------------- /test/run/t385.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: ValueError: negative shift count on line 1 2 | -------------------------------------------------------------------------------- /test/run/t385.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: ValueError: negative shift count on line 1 2 | -------------------------------------------------------------------------------- /test/run/t386.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t386.py -------------------------------------------------------------------------------- /test/run/t387.py: -------------------------------------------------------------------------------- 1 | print range(4, 9, 0) 2 | -------------------------------------------------------------------------------- /test/run/t387.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: ValueError: range() step argument must not be zero on line 1 2 | -------------------------------------------------------------------------------- /test/run/t388.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t388.py -------------------------------------------------------------------------------- /test/run/t389.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t389.py -------------------------------------------------------------------------------- /test/run/t389.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: ValueError: substring not found on line 15 2 | -------------------------------------------------------------------------------- /test/run/t389.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: ValueError: substring not found on line 15 2 | -------------------------------------------------------------------------------- /test/run/t39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t39.py -------------------------------------------------------------------------------- /test/run/t39.py.real: -------------------------------------------------------------------------------- 1 | 4 2 | OK 3 | -------------------------------------------------------------------------------- /test/run/t390.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t390.py -------------------------------------------------------------------------------- /test/run/t391.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t391.py -------------------------------------------------------------------------------- /test/run/t392.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t392.py -------------------------------------------------------------------------------- /test/run/t392.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: 'bool' object is not callable on line 12 2 | -------------------------------------------------------------------------------- /test/run/t392.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: 'bool' object is not callable on line 12 2 | -------------------------------------------------------------------------------- /test/run/t393.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t393.py -------------------------------------------------------------------------------- /test/run/t393.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: ValueError: empty separator on line 3 2 | -------------------------------------------------------------------------------- /test/run/t393.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: ValueError: empty separator on line 3 2 | -------------------------------------------------------------------------------- /test/run/t394.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t394.py -------------------------------------------------------------------------------- /test/run/t395.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t395.py -------------------------------------------------------------------------------- /test/run/t395.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | 1.0 4 | 0.0 5 | -------------------------------------------------------------------------------- /test/run/t396.py: -------------------------------------------------------------------------------- 1 | print (1, 2, 3).index(2) 2 | -------------------------------------------------------------------------------- /test/run/t396.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/run/t397.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t397.py -------------------------------------------------------------------------------- /test/run/t397.py.real: -------------------------------------------------------------------------------- 1 | 2 > 1 2 | -------------------------------------------------------------------------------- /test/run/t398.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t398.py -------------------------------------------------------------------------------- /test/run/t399.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t399.py -------------------------------------------------------------------------------- /test/run/t40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t40.py -------------------------------------------------------------------------------- /test/run/t40.py.real: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /test/run/t400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t400.py -------------------------------------------------------------------------------- /test/run/t401.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t401.py -------------------------------------------------------------------------------- /test/run/t402.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t402.py -------------------------------------------------------------------------------- /test/run/t403.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t403.py -------------------------------------------------------------------------------- /test/run/t404.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t404.py -------------------------------------------------------------------------------- /test/run/t405.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t405.py -------------------------------------------------------------------------------- /test/run/t406.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t406.py -------------------------------------------------------------------------------- /test/run/t407.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t407.py -------------------------------------------------------------------------------- /test/run/t408.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t408.py -------------------------------------------------------------------------------- /test/run/t409.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t409.py -------------------------------------------------------------------------------- /test/run/t41.py: -------------------------------------------------------------------------------- 1 | x = [v*v for v in range(0,5)] 2 | print x[3] 3 | -------------------------------------------------------------------------------- /test/run/t41.py.real: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /test/run/t410.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t410.py -------------------------------------------------------------------------------- /test/run/t410.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | -------------------------------------------------------------------------------- /test/run/t411.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t411.py -------------------------------------------------------------------------------- /test/run/t412.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t412.py -------------------------------------------------------------------------------- /test/run/t413.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t413.py -------------------------------------------------------------------------------- /test/run/t414.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t414.py -------------------------------------------------------------------------------- /test/run/t415.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t415.py -------------------------------------------------------------------------------- /test/run/t416.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t416.py -------------------------------------------------------------------------------- /test/run/t417.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t417.py -------------------------------------------------------------------------------- /test/run/t418.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t418.py -------------------------------------------------------------------------------- /test/run/t419.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t419.py -------------------------------------------------------------------------------- /test/run/t42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t42.py -------------------------------------------------------------------------------- /test/run/t42.py.real: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /test/run/t420.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t420.py -------------------------------------------------------------------------------- /test/run/t421.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t421.py -------------------------------------------------------------------------------- /test/run/t422.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t422.py -------------------------------------------------------------------------------- /test/run/t423.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t423.py -------------------------------------------------------------------------------- /test/run/t424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t424.py -------------------------------------------------------------------------------- /test/run/t425.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t425.py -------------------------------------------------------------------------------- /test/run/t426.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t426.py -------------------------------------------------------------------------------- /test/run/t427.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t427.py -------------------------------------------------------------------------------- /test/run/t428.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t428.py -------------------------------------------------------------------------------- /test/run/t429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t429.py -------------------------------------------------------------------------------- /test/run/t43.py: -------------------------------------------------------------------------------- 1 | x = [1] 2 | x.extend([2,3]) 3 | print(x[1]) 4 | -------------------------------------------------------------------------------- /test/run/t43.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/run/t430.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t430.py -------------------------------------------------------------------------------- /test/run/t431.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t431.py -------------------------------------------------------------------------------- /test/run/t432.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t432.py -------------------------------------------------------------------------------- /test/run/t433.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t433.py -------------------------------------------------------------------------------- /test/run/t434.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t434.py -------------------------------------------------------------------------------- /test/run/t435.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t435.py -------------------------------------------------------------------------------- /test/run/t436.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t436.py -------------------------------------------------------------------------------- /test/run/t437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t437.py -------------------------------------------------------------------------------- /test/run/t438.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t438.py -------------------------------------------------------------------------------- /test/run/t439.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t439.py -------------------------------------------------------------------------------- /test/run/t44.py: -------------------------------------------------------------------------------- 1 | print("O"+"K") 2 | -------------------------------------------------------------------------------- /test/run/t44.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t440.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t440.py -------------------------------------------------------------------------------- /test/run/t441.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t441.py -------------------------------------------------------------------------------- /test/run/t442.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t442.py -------------------------------------------------------------------------------- /test/run/t443.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t443.py -------------------------------------------------------------------------------- /test/run/t444.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t444.py -------------------------------------------------------------------------------- /test/run/t445.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t445.py -------------------------------------------------------------------------------- /test/run/t446.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t446.py -------------------------------------------------------------------------------- /test/run/t447.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t447.py -------------------------------------------------------------------------------- /test/run/t448.py: -------------------------------------------------------------------------------- 1 | print range() 2 | -------------------------------------------------------------------------------- /test/run/t449.py: -------------------------------------------------------------------------------- 1 | print range("2",4) 2 | -------------------------------------------------------------------------------- /test/run/t45.py: -------------------------------------------------------------------------------- 1 | print "-".join(["O","K"]) 2 | -------------------------------------------------------------------------------- /test/run/t45.py.real: -------------------------------------------------------------------------------- 1 | O-K 2 | -------------------------------------------------------------------------------- /test/run/t450.py: -------------------------------------------------------------------------------- 1 | print range(1,10,0.5) 2 | -------------------------------------------------------------------------------- /test/run/t451.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t451.py -------------------------------------------------------------------------------- /test/run/t452.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t452.py -------------------------------------------------------------------------------- /test/run/t453.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t453.py -------------------------------------------------------------------------------- /test/run/t453.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /test/run/t454.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t454.py -------------------------------------------------------------------------------- /test/run/t455.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t455.py -------------------------------------------------------------------------------- /test/run/t456.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t456.py -------------------------------------------------------------------------------- /test/run/t456.py.real: -------------------------------------------------------------------------------- 1 | [0, 4, 2, 3] 2 | -------------------------------------------------------------------------------- /test/run/t457.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t457.py -------------------------------------------------------------------------------- /test/run/t458.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t458.py -------------------------------------------------------------------------------- /test/run/t459.py: -------------------------------------------------------------------------------- 1 | a = [1, 2, 3] 2 | a[1] += 4 3 | print a 4 | -------------------------------------------------------------------------------- /test/run/t459.py.real: -------------------------------------------------------------------------------- 1 | [1, 6, 3] 2 | -------------------------------------------------------------------------------- /test/run/t46.py: -------------------------------------------------------------------------------- 1 | print("X-OK-Y".split("-")[1]) 2 | -------------------------------------------------------------------------------- /test/run/t46.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t460.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t460.py -------------------------------------------------------------------------------- /test/run/t461.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t461.py -------------------------------------------------------------------------------- /test/run/t462.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t462.py -------------------------------------------------------------------------------- /test/run/t463.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t463.py -------------------------------------------------------------------------------- /test/run/t464.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t464.py -------------------------------------------------------------------------------- /test/run/t464.py.real: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | SystemExit: on line 2 4 | -------------------------------------------------------------------------------- /test/run/t464.py.real.force: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | SystemExit: on line 2 4 | -------------------------------------------------------------------------------- /test/run/t465.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t465.py -------------------------------------------------------------------------------- /test/run/t466.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t466.py -------------------------------------------------------------------------------- /test/run/t467.py: -------------------------------------------------------------------------------- 1 | if true: 2 | print "Hello" 3 | -------------------------------------------------------------------------------- /test/run/t468.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t468.py -------------------------------------------------------------------------------- /test/run/t468.py.real: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /test/run/t469.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t469.py -------------------------------------------------------------------------------- /test/run/t47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t47.py -------------------------------------------------------------------------------- /test/run/t47.py.real: -------------------------------------------------------------------------------- 1 | ZO 2 | -------------------------------------------------------------------------------- /test/run/t470.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t470.py -------------------------------------------------------------------------------- /test/run/t471.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t471.py -------------------------------------------------------------------------------- /test/run/t472.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t472.py -------------------------------------------------------------------------------- /test/run/t473.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t473.py -------------------------------------------------------------------------------- /test/run/t474.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t474.py -------------------------------------------------------------------------------- /test/run/t475.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t475.py -------------------------------------------------------------------------------- /test/run/t476.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t476.py -------------------------------------------------------------------------------- /test/run/t477.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t477.py -------------------------------------------------------------------------------- /test/run/t478.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t478.py -------------------------------------------------------------------------------- /test/run/t479.py: -------------------------------------------------------------------------------- 1 | reduce(lambda x,y: x + y, []) -------------------------------------------------------------------------------- /test/run/t48.py: -------------------------------------------------------------------------------- 1 | print "".join(["O"]+["K"]) 2 | -------------------------------------------------------------------------------- /test/run/t48.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t480.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t480.py -------------------------------------------------------------------------------- /test/run/t481.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t481.py -------------------------------------------------------------------------------- /test/run/t482.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t482.py -------------------------------------------------------------------------------- /test/run/t482.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | SystemExit: quit message on line 2 3 | -------------------------------------------------------------------------------- /test/run/t482.py.real.force: -------------------------------------------------------------------------------- 1 | 1 2 | SystemExit: quit message on line 2 3 | -------------------------------------------------------------------------------- /test/run/t483.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t483.py -------------------------------------------------------------------------------- /test/run/t484.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t484.py -------------------------------------------------------------------------------- /test/run/t485.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t485.py -------------------------------------------------------------------------------- /test/run/t486.py: -------------------------------------------------------------------------------- 1 | filter(None, 8) 2 | 3 | -------------------------------------------------------------------------------- /test/run/t486.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: 'int' object is not iterable on line 1 2 | -------------------------------------------------------------------------------- /test/run/t486.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: TypeError: 'int' object is not iterable on line 1 2 | -------------------------------------------------------------------------------- /test/run/t487.py: -------------------------------------------------------------------------------- 1 | map(lambda x,y: x + y, [0,1,2,3,4,5], False) 2 | -------------------------------------------------------------------------------- /test/run/t488.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t488.py -------------------------------------------------------------------------------- /test/run/t489.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t489.py -------------------------------------------------------------------------------- /test/run/t49.py: -------------------------------------------------------------------------------- 1 | x="OK";print x 2 | -------------------------------------------------------------------------------- /test/run/t49.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t490.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t490.py -------------------------------------------------------------------------------- /test/run/t491.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t491.py -------------------------------------------------------------------------------- /test/run/t492.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t492.py -------------------------------------------------------------------------------- /test/run/t493.py: -------------------------------------------------------------------------------- 1 | print pow(2, 9999, 13) 2 | -------------------------------------------------------------------------------- /test/run/t493.py.real: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /test/run/t494.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t494.py -------------------------------------------------------------------------------- /test/run/t495.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t495.py -------------------------------------------------------------------------------- /test/run/t496.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t496.py -------------------------------------------------------------------------------- /test/run/t497.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t497.py -------------------------------------------------------------------------------- /test/run/t498.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t498.py -------------------------------------------------------------------------------- /test/run/t499.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t499.py -------------------------------------------------------------------------------- /test/run/t499.py.real: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/run/t50.py: -------------------------------------------------------------------------------- 1 | x = [1,2,] 2 | print x[1] 3 | -------------------------------------------------------------------------------- /test/run/t50.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/run/t500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t500.py -------------------------------------------------------------------------------- /test/run/t501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t501.py -------------------------------------------------------------------------------- /test/run/t51.py: -------------------------------------------------------------------------------- 1 | a,b,d = [0],2,"OK" 2 | print d 3 | -------------------------------------------------------------------------------- /test/run/t51.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t512.py: -------------------------------------------------------------------------------- 1 | sorted([1,2,3], kesy=lambda x: -x, reverse=True) 2 | -------------------------------------------------------------------------------- /test/run/t513.py: -------------------------------------------------------------------------------- 1 | 2 | x = [1.0, 2.0] 3 | print x 4 | -------------------------------------------------------------------------------- /test/run/t513.py.real: -------------------------------------------------------------------------------- 1 | [1.0, 2.0] 2 | -------------------------------------------------------------------------------- /test/run/t52.py: -------------------------------------------------------------------------------- 1 | print "OKx"[:-1] 2 | -------------------------------------------------------------------------------- /test/run/t52.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t521.py.real: -------------------------------------------------------------------------------- 1 | 1524613553 2 | -------------------------------------------------------------------------------- /test/run/t521.py.real.force: -------------------------------------------------------------------------------- 1 | 1524613553 2 | -------------------------------------------------------------------------------- /test/run/t528.py: -------------------------------------------------------------------------------- 1 | print { 1: 4, 1.0: 5 } -------------------------------------------------------------------------------- /test/run/t528.py.real: -------------------------------------------------------------------------------- 1 | {1: 5} 2 | -------------------------------------------------------------------------------- /test/run/t53.py: -------------------------------------------------------------------------------- 1 | print "xOK"[1:] 2 | -------------------------------------------------------------------------------- /test/run/t53.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t532.py.real: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | -------------------------------------------------------------------------------- /test/run/t534.py.real: -------------------------------------------------------------------------------- 1 | 2 | neg 3 | pos 4 | invert 5 | no + 6 | -------------------------------------------------------------------------------- /test/run/t539.symtab: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run/t54.py: -------------------------------------------------------------------------------- 1 | a,b = "OK" 2 | print a+b 3 | -------------------------------------------------------------------------------- /test/run/t54.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t540.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | -------------------------------------------------------------------------------- /test/run/t541.py.real: -------------------------------------------------------------------------------- 1 | a>C 2 | b>C 3 | -------------------------------------------------------------------------------- /test/run/t542.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | 中文 3 | 6 4 | Résumé 5 | 6 6 | string 7 | -------------------------------------------------------------------------------- /test/run/t545.py.real: -------------------------------------------------------------------------------- 1 | 0 2 | 5 3 | 10 4 | 15 5 | 20 6 | -------------------------------------------------------------------------------- /test/run/t55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t55.py -------------------------------------------------------------------------------- /test/run/t55.py.real: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /test/run/t552.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | 中文 3 | 6 4 | Résumé 5 | 6 6 | string 7 | -------------------------------------------------------------------------------- /test/run/t555.py.real: -------------------------------------------------------------------------------- 1 | [0, 1, 2, 3, 4] 2 | -------------------------------------------------------------------------------- /test/run/t556.py.real: -------------------------------------------------------------------------------- 1 | Caught 2 | -------------------------------------------------------------------------------- /test/run/t557.py: -------------------------------------------------------------------------------- 1 | class C: 2 | raise Exception("Oops") 3 | -------------------------------------------------------------------------------- /test/run/t557.py.real: -------------------------------------------------------------------------------- 1 | EXCEPTION: Exception: Oops on line 2 2 | -------------------------------------------------------------------------------- /test/run/t557.py.real.force: -------------------------------------------------------------------------------- 1 | EXCEPTION: Exception: Oops on line 2 2 | -------------------------------------------------------------------------------- /test/run/t56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t56.py -------------------------------------------------------------------------------- /test/run/t56.py.real: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /test/run/t57.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t57.py -------------------------------------------------------------------------------- /test/run/t57.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t58.py: -------------------------------------------------------------------------------- 1 | print len([1,2,3]) 2 | -------------------------------------------------------------------------------- /test/run/t58.py.real: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /test/run/t59.py: -------------------------------------------------------------------------------- 1 | print len({'a':1, 'b':2}) 2 | -------------------------------------------------------------------------------- /test/run/t59.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/run/t60.py: -------------------------------------------------------------------------------- 1 | if not "?" in "xyz": print "OK" 2 | -------------------------------------------------------------------------------- /test/run/t60.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t61.py: -------------------------------------------------------------------------------- 1 | print({1:"OK"}[1]) 2 | -------------------------------------------------------------------------------- /test/run/t61.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t62.py: -------------------------------------------------------------------------------- 1 | print len("\\0") 2 | -------------------------------------------------------------------------------- /test/run/t62.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/run/t63.py: -------------------------------------------------------------------------------- 1 | print 1 in {1:2} 2 | -------------------------------------------------------------------------------- /test/run/t63.py.real: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /test/run/t64.py: -------------------------------------------------------------------------------- 1 | print 2 in {1:2} 2 | -------------------------------------------------------------------------------- /test/run/t64.py.real: -------------------------------------------------------------------------------- 1 | False 2 | -------------------------------------------------------------------------------- /test/run/t65.py: -------------------------------------------------------------------------------- 1 | print 2 in [1,2,3] 2 | -------------------------------------------------------------------------------- /test/run/t65.py.real: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /test/run/t66.py: -------------------------------------------------------------------------------- 1 | print 7 in [1,2,3] 2 | -------------------------------------------------------------------------------- /test/run/t66.py.real: -------------------------------------------------------------------------------- 1 | False 2 | -------------------------------------------------------------------------------- /test/run/t67.py: -------------------------------------------------------------------------------- 1 | print 7 in {1:2,'a':7} 2 | -------------------------------------------------------------------------------- /test/run/t67.py.real: -------------------------------------------------------------------------------- 1 | False 2 | -------------------------------------------------------------------------------- /test/run/t68.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t68.py -------------------------------------------------------------------------------- /test/run/t68.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t69.py: -------------------------------------------------------------------------------- 1 | x = {1:2} 2 | del x[1] 3 | print len(x) 4 | -------------------------------------------------------------------------------- /test/run/t69.py.real: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /test/run/t70.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t70.py -------------------------------------------------------------------------------- /test/run/t71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t71.py -------------------------------------------------------------------------------- /test/run/t72.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t72.py -------------------------------------------------------------------------------- /test/run/t72.py.real: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/run/t73.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t73.py -------------------------------------------------------------------------------- /test/run/t74.py: -------------------------------------------------------------------------------- 1 | print [1,2,3].index(3) 2 | -------------------------------------------------------------------------------- /test/run/t74.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/run/t75.py: -------------------------------------------------------------------------------- 1 | print "1,2,3".split(",").index("3") 2 | -------------------------------------------------------------------------------- /test/run/t75.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/run/t76.py: -------------------------------------------------------------------------------- 1 | v = [3,2,1] 2 | v.sort() 3 | print v[0] 4 | -------------------------------------------------------------------------------- /test/run/t76.py.real: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/run/t77.py: -------------------------------------------------------------------------------- 1 | print(abs(-5)) 2 | -------------------------------------------------------------------------------- /test/run/t77.py.real: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /test/run/t78.py: -------------------------------------------------------------------------------- 1 | print ord('X') 2 | -------------------------------------------------------------------------------- /test/run/t78.py.real: -------------------------------------------------------------------------------- 1 | 88 2 | -------------------------------------------------------------------------------- /test/run/t79.py: -------------------------------------------------------------------------------- 1 | print ord(chr(128)) 2 | -------------------------------------------------------------------------------- /test/run/t79.py.real: -------------------------------------------------------------------------------- 1 | 128 2 | -------------------------------------------------------------------------------- /test/run/t80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t80.py -------------------------------------------------------------------------------- /test/run/t80.py.real: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /test/run/t81.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t81.py -------------------------------------------------------------------------------- /test/run/t81.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t82.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t82.py -------------------------------------------------------------------------------- /test/run/t82.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | None 3 | -------------------------------------------------------------------------------- /test/run/t83.py: -------------------------------------------------------------------------------- 1 | print "aa..bbb...ccc".replace("..", "X") 2 | -------------------------------------------------------------------------------- /test/run/t83.py.real: -------------------------------------------------------------------------------- 1 | aaXbbbX.ccc 2 | -------------------------------------------------------------------------------- /test/run/t84.py: -------------------------------------------------------------------------------- 1 | print "..bbb..".replace("..", "X") 2 | -------------------------------------------------------------------------------- /test/run/t84.py.real: -------------------------------------------------------------------------------- 1 | XbbbX 2 | -------------------------------------------------------------------------------- /test/run/t85.py: -------------------------------------------------------------------------------- 1 | print "234".replace("\r\n", "\n") 2 | -------------------------------------------------------------------------------- /test/run/t85.py.real: -------------------------------------------------------------------------------- 1 | 234 2 | -------------------------------------------------------------------------------- /test/run/t86.py: -------------------------------------------------------------------------------- 1 | print "a\0b".replace("\0", "c") 2 | -------------------------------------------------------------------------------- /test/run/t86.py.real: -------------------------------------------------------------------------------- 1 | acb 2 | -------------------------------------------------------------------------------- /test/run/t87.py: -------------------------------------------------------------------------------- 1 | x = (1,3) 2 | print {x:'OK'}[x] 3 | -------------------------------------------------------------------------------- /test/run/t87.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t88.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t88.py -------------------------------------------------------------------------------- /test/run/t88.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t89.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RunestoneInteractive/skulpt/HEAD/test/run/t89.py -------------------------------------------------------------------------------- /test/run/t89.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t90.py: -------------------------------------------------------------------------------- 1 | x = 'OK',1 2 | print x[0] 3 | -------------------------------------------------------------------------------- /test/run/t90.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t905.py: -------------------------------------------------------------------------------- 1 | a: int = 0 -------------------------------------------------------------------------------- /test/run/t91.py: -------------------------------------------------------------------------------- 1 | x = ('OK',) 2 | print(x[0]) 3 | -------------------------------------------------------------------------------- /test/run/t91.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t92.py: -------------------------------------------------------------------------------- 1 | x = 'OK', 2 | print x[0] 3 | -------------------------------------------------------------------------------- /test/run/t92.py.real: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /test/run/t93.py: -------------------------------------------------------------------------------- 1 | x = 2,'OK', 2 | print len(x) 3 | -------------------------------------------------------------------------------- /test/run/t93.py.real: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /test/run/t94.py: -------------------------------------------------------------------------------- 1 | x = 'OK' 2 | print x[0] 3 | -------------------------------------------------------------------------------- /test/run/t94.py.real: -------------------------------------------------------------------------------- 1 | O 2 | -------------------------------------------------------------------------------- /test/run/t95.py: -------------------------------------------------------------------------------- 1 | print 0xff 2 | -------------------------------------------------------------------------------- /test/run/t95.py.real: -------------------------------------------------------------------------------- 1 | 255 2 | -------------------------------------------------------------------------------- /test/run/t96.py: -------------------------------------------------------------------------------- 1 | x = [] 2 | x.append(x) 3 | print x ~0x15 2 | -------------------------------------------------------------------------------- /test/tokenize/t04.py: -------------------------------------------------------------------------------- 1 | 2134568 != 01231515 2 | -------------------------------------------------------------------------------- /test/tokenize/t06.py: -------------------------------------------------------------------------------- 1 | 0xdeadbeef != -1 2 | -------------------------------------------------------------------------------- /test/tokenize/t07.py: -------------------------------------------------------------------------------- 1 | 0xdeadc0de & 012345 2 | -------------------------------------------------------------------------------- /test/tokenize/t08.py: -------------------------------------------------------------------------------- 1 | 0xFF & 0x15 | 1234 2 | -------------------------------------------------------------------------------- /test/tokenize/t09.py: -------------------------------------------------------------------------------- 1 | x = 0L 2 | -------------------------------------------------------------------------------- /test/tokenize/t11.py: -------------------------------------------------------------------------------- 1 | x = 123141242151251616110l 2 | -------------------------------------------------------------------------------- /test/tokenize/t13.py: -------------------------------------------------------------------------------- 1 | x = 3.14159 2 | -------------------------------------------------------------------------------- /test/tokenize/t14.py: -------------------------------------------------------------------------------- 1 | x = 314159. 2 | -------------------------------------------------------------------------------- /test/tokenize/t15.py: -------------------------------------------------------------------------------- 1 | x = .314159 2 | -------------------------------------------------------------------------------- /test/tokenize/t16.py: -------------------------------------------------------------------------------- 1 | x = 3e14159 2 | -------------------------------------------------------------------------------- /test/tokenize/t17.py: -------------------------------------------------------------------------------- 1 | x = 3E123 2 | -------------------------------------------------------------------------------- /test/tokenize/t18.py: -------------------------------------------------------------------------------- 1 | x+y = 3e-1230 2 | -------------------------------------------------------------------------------- /test/tokenize/t19.py: -------------------------------------------------------------------------------- 1 | x = 3.14e159 2 | -------------------------------------------------------------------------------- /test/tokenize/t20.py: -------------------------------------------------------------------------------- 1 | x = ''; y = "" 2 | -------------------------------------------------------------------------------- /test/tokenize/t21.py: -------------------------------------------------------------------------------- 1 | x = '"'; y = "'" 2 | -------------------------------------------------------------------------------- /test/tokenize/t22.py: -------------------------------------------------------------------------------- 1 | x = "doesn't "shrink", does it" 2 | -------------------------------------------------------------------------------- /test/tokenize/t23.py: -------------------------------------------------------------------------------- 1 | x = u'abc' + U'ABC' 2 | -------------------------------------------------------------------------------- /test/tokenize/t27.py: -------------------------------------------------------------------------------- 1 | def d01v_(a=1, *k, **w): pass 2 | -------------------------------------------------------------------------------- /test/tokenize/t29.py: -------------------------------------------------------------------------------- 1 | x = 1 << 1 >> 5 2 | -------------------------------------------------------------------------------- /test/tokenize/t31.py: -------------------------------------------------------------------------------- 1 | x = 1//1*1/5*12%0x12 2 | -------------------------------------------------------------------------------- /test/tokenize/t35.py: -------------------------------------------------------------------------------- 1 | @staticmethod 2 | def foo(x,y): pass 3 | -------------------------------------------------------------------------------- /test/tokenize/t36.py: -------------------------------------------------------------------------------- 1 | 1 + 1 2 | -------------------------------------------------------------------------------- /test/tokenize/t39.py: -------------------------------------------------------------------------------- 1 | wee = """this is some 2 | stuff and 3 | -------------------------------------------------------------------------------- /test/tokenize/t40.py: -------------------------------------------------------------------------------- 1 | a = r'''this is some 2 | more stuff 3 | 4 | -------------------------------------------------------------------------------- /test/tokenize/t41.py: -------------------------------------------------------------------------------- 1 | print """wee waa 2 | 3 | woo wii""" 4 | -------------------------------------------------------------------------------- /test/unit/file.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /test/unit/importable_module.py: -------------------------------------------------------------------------------- 1 | # Used by test_import.py 2 | version = "toplevel" 3 | -------------------------------------------------------------------------------- /test/unit/subpackage/explicit_relative_import.py: -------------------------------------------------------------------------------- 1 | explicit_load_succeeded = True -------------------------------------------------------------------------------- /test/unit/subpackage/importable_module_2.py: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /test/unit3/test_import/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/circular_imports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/circular_imports/basic2.py: -------------------------------------------------------------------------------- 1 | from . import basic 2 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/circular_imports/source.py: -------------------------------------------------------------------------------- 1 | from . import use 2 | spam = 1 3 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/circular_imports/subpkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/circular_imports/subpkg/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/circular_imports/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/package2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/package2/submodule2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit3/test_import/data/unwritable/x.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tok_test.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------