├── slp-250 ├── Lib │ ├── bdb.py │ ├── cgi.py │ ├── cmd.py │ ├── csv.py │ ├── dis.py │ ├── Bastion.py │ ├── Cookie.py │ ├── aifc.py │ ├── anydbm.py │ ├── asynchat.py │ ├── asyncore.py │ ├── atexit.py │ ├── audiodev.py │ ├── base64.py │ ├── binhex.py │ ├── bisect.py │ ├── bsddb │ │ ├── db.py │ │ ├── dbobj.py │ │ ├── dbrecio.py │ │ ├── dbutils.py │ │ ├── __init__.py │ │ ├── dbshelve.py │ │ ├── dbtables.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── test_1413192.py │ │ │ ├── test_all.py │ │ │ ├── test_basics.py │ │ │ ├── test_compare.py │ │ │ ├── test_compat.py │ │ │ ├── test_dbobj.py │ │ │ ├── test_join.py │ │ │ ├── test_lock.py │ │ │ ├── test_misc.py │ │ │ ├── test_pickle.py │ │ │ ├── test_queue.py │ │ │ ├── test_recno.py │ │ │ ├── test_thread.py │ │ │ ├── test_associate.py │ │ │ ├── test_dbshelve.py │ │ │ ├── test_dbtables.py │ │ │ ├── test_env_close.py │ │ │ ├── test_get_none.py │ │ │ ├── test_sequence.py │ │ │ └── test_cursor_pget_bug.py │ ├── cProfile.py │ ├── calendar.py │ ├── cgitb.py │ ├── chunk.py │ ├── code.py │ ├── codecs.py │ ├── codeop.py │ ├── colorsys.py │ ├── commands.py │ ├── copy.py │ ├── copy_reg.py │ ├── dbhash.py │ ├── decimal.py │ ├── difflib.py │ ├── dircache.py │ ├── doctest.py │ ├── dumbdbm.py │ ├── filecmp.py │ ├── fnmatch.py │ ├── fpformat.py │ ├── ftplib.py │ ├── getopt.py │ ├── getpass.py │ ├── gettext.py │ ├── glob.py │ ├── gzip.py │ ├── hashlib.py │ ├── heapq.py │ ├── hmac.py │ ├── htmllib.py │ ├── httplib.py │ ├── ihooks.py │ ├── imaplib.py │ ├── imghdr.py │ ├── imputil.py │ ├── inspect.py │ ├── keyword.py │ ├── locale.py │ ├── macpath.py │ ├── mailbox.py │ ├── CGIHTTPServer.py │ ├── ConfigParser.py │ ├── HTMLParser.py │ ├── compileall.py │ ├── compiler │ │ ├── ast.py │ │ ├── misc.py │ │ ├── __init__.py │ │ ├── consts.py │ │ ├── future.py │ │ ├── pyassem.py │ │ ├── pycodegen.py │ │ ├── symbols.py │ │ ├── syntax.py │ │ ├── visitor.py │ │ └── transformer.py │ ├── contextlib.py │ ├── cookielib.py │ ├── ctypes │ │ ├── util.py │ │ ├── __init__.py │ │ ├── _endian.py │ │ ├── wintypes.py │ │ ├── macholib │ │ │ ├── dyld.py │ │ │ ├── dylib.py │ │ │ ├── README.ctypes │ │ │ ├── __init__.py │ │ │ ├── fetch_macholib │ │ │ ├── framework.py │ │ │ └── fetch_macholib.bat │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── runtests.py │ │ │ ├── test_anon.py │ │ │ ├── test_arrays.py │ │ │ ├── test_cast.py │ │ │ ├── test_cfuncs.py │ │ │ ├── test_find.py │ │ │ ├── test_init.py │ │ │ ├── test_libc.py │ │ │ ├── test_repr.py │ │ │ ├── test_sizes.py │ │ │ ├── test_values.py │ │ │ ├── test_win32.py │ │ │ ├── test_bitfields.py │ │ │ ├── test_buffers.py │ │ │ ├── test_byteswap.py │ │ │ ├── test_callbacks.py │ │ │ ├── test_checkretval.py │ │ │ ├── test_errcheck.py │ │ │ ├── test_funcptr.py │ │ │ ├── test_functions.py │ │ │ ├── test_incomplete.py │ │ │ ├── test_integers.py │ │ │ ├── test_internals.py │ │ │ ├── test_keeprefs.py │ │ │ ├── test_loading.py │ │ │ ├── test_macholib.py │ │ │ ├── test_numbers.py │ │ │ ├── test_objects.py │ │ │ ├── test_parameters.py │ │ │ ├── test_pointers.py │ │ │ ├── test_prototypes.py │ │ │ ├── test_python_api.py │ │ │ ├── test_refcounts.py │ │ │ ├── test_slicing.py │ │ │ ├── test_stringptr.py │ │ │ ├── test_strings.py │ │ │ ├── test_structures.py │ │ │ ├── test_unicode.py │ │ │ ├── test_array_in_pointer.py │ │ │ ├── test_as_parameter.py │ │ │ ├── test_memfunctions.py │ │ │ ├── test_random_things.py │ │ │ ├── test_returnfuncptrs.py │ │ │ ├── test_simplesubclasses.py │ │ │ ├── test_struct_fields.py │ │ │ ├── test_varsize_struct.py │ │ │ └── test_unaligned_structures.py │ ├── curses │ │ ├── ascii.py │ │ ├── panel.py │ │ ├── __init__.py │ │ ├── has_key.py │ │ ├── textpad.py │ │ └── wrapper.py │ ├── distutils │ │ ├── README │ │ ├── cmd.py │ │ ├── log.py │ │ ├── __init__.py │ │ ├── core.py │ │ ├── debug.py │ │ ├── dep_util.py │ │ ├── dir_util.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── filelist.py │ │ ├── spawn.py │ │ ├── util.py │ │ ├── version.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── command │ │ │ ├── bdist.py │ │ │ ├── build.py │ │ │ ├── clean.py │ │ │ ├── sdist.py │ │ │ ├── __init__.py │ │ │ ├── bdist_dumb.py │ │ │ ├── bdist_msi.py │ │ │ ├── bdist_rpm.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── config.py │ │ │ ├── install.py │ │ │ ├── register.py │ │ │ ├── upload.py │ │ │ ├── wininst-6.exe │ │ │ ├── bdist_wininst.py │ │ │ ├── build_scripts.py │ │ │ ├── command_template │ │ │ ├── install_data.py │ │ │ ├── install_headers.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── wininst-7.1.exe │ │ │ └── install_egg_info.py │ │ ├── emxccompiler.py │ │ ├── extension.py │ │ ├── fancy_getopt.py │ │ ├── file_util.py │ │ ├── msvccompiler.py │ │ ├── sysconfig.py │ │ ├── tests │ │ │ ├── support.py │ │ │ ├── __init__.py │ │ │ ├── test_dist.py │ │ │ ├── test_install.py │ │ │ ├── test_build_py.py │ │ │ ├── test_build_scripts.py │ │ │ ├── test_install_scripts.py │ │ │ └── test_versionpredicate.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── cygwinccompiler.py │ │ ├── mwerkscompiler.py │ │ └── versionpredicate.py │ ├── dummy_thread.py │ ├── email │ │ ├── charset.py │ │ ├── errors.py │ │ ├── header.py │ │ ├── message.py │ │ ├── parser.py │ │ ├── utils.py │ │ ├── __init__.py │ │ ├── _parseaddr.py │ │ ├── base64mime.py │ │ ├── encoders.py │ │ ├── feedparser.py │ │ ├── generator.py │ │ ├── iterators.py │ │ ├── mime │ │ │ ├── audio.py │ │ │ ├── base.py │ │ │ ├── image.py │ │ │ ├── message.py │ │ │ ├── text.py │ │ │ ├── __init__.py │ │ │ ├── application.py │ │ │ ├── multipart.py │ │ │ └── nonmultipart.py │ │ ├── quoprimime.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ ├── msg_01.txt │ │ │ ├── msg_02.txt │ │ │ ├── msg_03.txt │ │ │ ├── msg_04.txt │ │ │ ├── msg_05.txt │ │ │ ├── msg_06.txt │ │ │ ├── msg_07.txt │ │ │ ├── msg_08.txt │ │ │ ├── msg_09.txt │ │ │ ├── msg_10.txt │ │ │ ├── msg_11.txt │ │ │ ├── msg_12.txt │ │ │ ├── msg_13.txt │ │ │ ├── msg_14.txt │ │ │ ├── msg_15.txt │ │ │ ├── msg_16.txt │ │ │ ├── msg_17.txt │ │ │ ├── msg_18.txt │ │ │ ├── msg_19.txt │ │ │ ├── msg_20.txt │ │ │ ├── msg_21.txt │ │ │ ├── msg_22.txt │ │ │ ├── msg_23.txt │ │ │ ├── msg_24.txt │ │ │ ├── msg_25.txt │ │ │ ├── msg_26.txt │ │ │ ├── msg_27.txt │ │ │ ├── msg_28.txt │ │ │ ├── msg_29.txt │ │ │ ├── msg_30.txt │ │ │ ├── msg_31.txt │ │ │ ├── msg_32.txt │ │ │ ├── msg_33.txt │ │ │ ├── msg_34.txt │ │ │ ├── msg_35.txt │ │ │ ├── msg_36.txt │ │ │ ├── msg_37.txt │ │ │ ├── msg_38.txt │ │ │ ├── msg_39.txt │ │ │ ├── msg_40.txt │ │ │ ├── msg_41.txt │ │ │ ├── msg_42.txt │ │ │ ├── msg_43.txt │ │ │ ├── msg_44.txt │ │ │ ├── PyBanner048.gif │ │ │ ├── audiotest.au │ │ │ └── msg_12a.txt │ │ │ ├── test_email.py │ │ │ ├── test_email_codecs.py │ │ │ ├── test_email_renamed.py │ │ │ ├── test_email_torture.py │ │ │ └── test_email_codecs_renamed.py │ ├── encodings │ │ ├── gbk.py │ │ ├── hz.py │ │ ├── __init__.py │ │ ├── aliases.py │ │ ├── ascii.py │ │ ├── big5.py │ │ ├── charmap.py │ │ ├── cp037.py │ │ ├── cp1006.py │ │ ├── cp1026.py │ │ ├── cp1140.py │ │ ├── cp1250.py │ │ ├── cp1251.py │ │ ├── cp1252.py │ │ ├── cp1253.py │ │ ├── cp1254.py │ │ ├── cp1255.py │ │ ├── cp1256.py │ │ ├── cp1257.py │ │ ├── cp1258.py │ │ ├── cp424.py │ │ ├── cp437.py │ │ ├── cp500.py │ │ ├── cp737.py │ │ ├── cp775.py │ │ ├── cp850.py │ │ ├── cp852.py │ │ ├── cp855.py │ │ ├── cp856.py │ │ ├── cp857.py │ │ ├── cp860.py │ │ ├── cp861.py │ │ ├── cp862.py │ │ ├── cp863.py │ │ ├── cp864.py │ │ ├── cp865.py │ │ ├── cp866.py │ │ ├── cp869.py │ │ ├── cp874.py │ │ ├── cp875.py │ │ ├── cp932.py │ │ ├── cp949.py │ │ ├── cp950.py │ │ ├── euc_jp.py │ │ ├── euc_kr.py │ │ ├── gb18030.py │ │ ├── gb2312.py │ │ ├── idna.py │ │ ├── johab.py │ │ ├── koi8_r.py │ │ ├── koi8_u.py │ │ ├── latin_1.py │ │ ├── mbcs.py │ │ ├── palmos.py │ │ ├── ptcp154.py │ │ ├── punycode.py │ │ ├── rot_13.py │ │ ├── tis_620.py │ │ ├── utf_16.py │ │ ├── utf_7.py │ │ ├── utf_8.py │ │ ├── uu_codec.py │ │ ├── base64_codec.py │ │ ├── big5hkscs.py │ │ ├── bz2_codec.py │ │ ├── euc_jis_2004.py │ │ ├── euc_jisx0213.py │ │ ├── hex_codec.py │ │ ├── hp_roman8.py │ │ ├── iso2022_jp.py │ │ ├── iso2022_jp_1.py │ │ ├── iso2022_jp_2.py │ │ ├── iso2022_jp_3.py │ │ ├── iso2022_kr.py │ │ ├── iso8859_1.py │ │ ├── iso8859_10.py │ │ ├── iso8859_11.py │ │ ├── iso8859_13.py │ │ ├── iso8859_14.py │ │ ├── iso8859_15.py │ │ ├── iso8859_16.py │ │ ├── iso8859_2.py │ │ ├── iso8859_3.py │ │ ├── iso8859_4.py │ │ ├── iso8859_5.py │ │ ├── iso8859_6.py │ │ ├── iso8859_7.py │ │ ├── iso8859_8.py │ │ ├── iso8859_9.py │ │ ├── mac_arabic.py │ │ ├── mac_centeuro.py │ │ ├── mac_croatian.py │ │ ├── mac_cyrillic.py │ │ ├── mac_farsi.py │ │ ├── mac_greek.py │ │ ├── mac_iceland.py │ │ ├── mac_latin2.py │ │ ├── mac_roman.py │ │ ├── mac_romanian.py │ │ ├── mac_turkish.py │ │ ├── quopri_codec.py │ │ ├── shift_jis.py │ │ ├── string_escape.py │ │ ├── undefined.py │ │ ├── utf_16_be.py │ │ ├── utf_16_le.py │ │ ├── utf_8_sig.py │ │ ├── zlib_codec.py │ │ ├── iso2022_jp_2004.py │ │ ├── iso2022_jp_ext.py │ │ ├── raw_unicode_escape.py │ │ ├── shift_jis_2004.py │ │ ├── shift_jisx0213.py │ │ ├── unicode_escape.py │ │ └── unicode_internal.py │ ├── fileinput.py │ ├── formatter.py │ ├── functools.py │ ├── gopherlib.py │ ├── hotshot │ │ ├── log.py │ │ ├── stats.py │ │ ├── __init__.py │ │ └── stones.py │ ├── idlelib │ │ ├── NEWS.txt │ │ ├── TODO.txt │ │ ├── help.txt │ │ ├── idle.bat │ │ ├── idle.py │ │ ├── idle.pyw │ │ ├── rpc.py │ │ ├── run.py │ │ ├── AutoExpand.py │ │ ├── Bindings.py │ │ ├── CREDITS.txt │ │ ├── CallTips.py │ │ ├── ChangeLog │ │ ├── Debugger.py │ │ ├── Delegator.py │ │ ├── FileList.py │ │ ├── GrepDialog.py │ │ ├── HISTORY.txt │ │ ├── IOBinding.py │ │ ├── Icons │ │ │ ├── tk.gif │ │ │ ├── folder.gif │ │ │ ├── idle.icns │ │ │ ├── plusnode.gif │ │ │ ├── python.gif │ │ │ ├── minusnode.gif │ │ │ └── openfolder.gif │ │ ├── MultiCall.py │ │ ├── ParenMatch.py │ │ ├── Percolator.py │ │ ├── PyParse.py │ │ ├── PyShell.py │ │ ├── README.txt │ │ ├── ToolTip.py │ │ ├── TreeWidget.py │ │ ├── WindowList.py │ │ ├── ZoomHeight.py │ │ ├── __init__.py │ │ ├── extend.txt │ │ ├── idlever.py │ │ ├── tabpage.py │ │ ├── testcode.py │ │ ├── textView.py │ │ ├── AutoComplete.py │ │ ├── CallTipWindow.py │ │ ├── ClassBrowser.py │ │ ├── CodeContext.py │ │ ├── ColorDelegator.py │ │ ├── EditorWindow.py │ │ ├── FormatParagraph.py │ │ ├── HyperParser.py │ │ ├── IdleHistory.py │ │ ├── MultiStatusBar.py │ │ ├── ObjectBrowser.py │ │ ├── OutputWindow.py │ │ ├── PathBrowser.py │ │ ├── RemoteDebugger.py │ │ ├── ReplaceDialog.py │ │ ├── ScriptBinding.py │ │ ├── ScrolledList.py │ │ ├── SearchDialog.py │ │ ├── SearchEngine.py │ │ ├── StackViewer.py │ │ ├── UndoDelegator.py │ │ ├── aboutDialog.py │ │ ├── config-keys.def │ │ ├── config-main.def │ │ ├── configDialog.py │ │ ├── configHandler.py │ │ ├── macosxSupport.py │ │ ├── AutoCompleteWindow.py │ │ ├── RemoteObjectBrowser.py │ │ ├── SearchDialogBase.py │ │ ├── WidgetRedirector.py │ │ ├── config-extensions.def │ │ ├── config-highlight.def │ │ ├── configHelpSourceEdit.py │ │ ├── dynOptionMenuWidget.py │ │ ├── keybindingDialog.py │ │ └── configSectionNameDialog.py │ ├── lib-tk │ │ ├── Canvas.py │ │ ├── Dialog.py │ │ ├── FixTk.py │ │ ├── Tix.py │ │ ├── Tkdnd.py │ │ ├── tkFont.py │ │ ├── turtle.py │ │ ├── FileDialog.py │ │ ├── Tkconstants.py │ │ ├── Tkinter.py │ │ ├── ScrolledText.py │ │ ├── SimpleDialog.py │ │ ├── tkColorChooser.py │ │ ├── tkCommonDialog.py │ │ ├── tkFileDialog.py │ │ ├── tkMessageBox.py │ │ └── tkSimpleDialog.py │ ├── linecache.py │ ├── macurl2path.py │ ├── BaseHTTPServer.py │ ├── DocXMLRPCServer.py │ ├── dummy_threading.py │ ├── htmlentitydefs.py │ ├── logging │ │ ├── __init__.py │ │ ├── config.py │ │ └── handlers.py │ ├── sqlite3 │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── dbapi.py │ │ │ ├── factory.py │ │ │ ├── hooks.py │ │ │ ├── types.py │ │ │ ├── regression.py │ │ │ ├── transactions.py │ │ │ └── userfunctions.py │ │ ├── dbapi2.py │ │ └── __init__.py │ ├── test │ │ ├── leakers │ │ │ └── __init__.py │ │ ├── bad_coding.py │ │ ├── cfgparser.1 │ │ ├── bad_coding2.py │ │ ├── output │ │ │ ├── test_nis │ │ │ ├── test_openpty │ │ │ ├── test_resource │ │ │ ├── test_rgbimg │ │ │ ├── test_signal │ │ │ ├── test_frozen │ │ │ ├── test_pty │ │ │ ├── test_ossaudiodev │ │ │ ├── test_popen │ │ │ ├── test_threadedtempfile │ │ │ ├── test_new │ │ │ ├── test_winreg │ │ │ ├── test_global │ │ │ ├── test_opcodes │ │ │ └── test_popen2 │ │ ├── test_xdrlib.py │ │ ├── badsyntax_nocaret.py │ │ ├── __init__.py │ │ ├── test_bastion.py │ │ ├── empty.vbs │ │ ├── 185test.db │ │ ├── audiotest.au │ │ ├── test_csv.py │ │ ├── test_sax.py │ │ ├── test_shlex.py │ │ ├── testtar.tar │ │ ├── sgml_input.html │ │ ├── test_marshal.py │ │ ├── test_pep263.py │ │ ├── test_cookielib.py │ │ ├── test_doctest3.txt │ │ ├── test_pickletools.py │ │ ├── testall.py │ │ ├── badsyntax_future8.py │ │ ├── crashers │ │ │ ├── infinite_rec_4.py │ │ │ ├── infinite_rec_2.py │ │ │ ├── infinite_rec_5.py │ │ │ └── infinite_rec_1.py │ │ ├── badsyntax_future9.py │ │ ├── test_future2.py │ │ ├── badsyntax_future4.py │ │ ├── badsyntax_future6.py │ │ ├── autotest.py │ │ ├── badsyntax_future3.py │ │ ├── badsyntax_future5.py │ │ ├── badsyntax_future7.py │ │ ├── test_crypt.py │ │ └── test_future1.py │ ├── plat-mac │ │ ├── Carbon │ │ │ ├── AE.py │ │ │ ├── AH.py │ │ │ ├── App.py │ │ │ ├── CF.py │ │ │ ├── CG.py │ │ │ ├── Cm.py │ │ │ ├── Ctl.py │ │ │ ├── Dlg.py │ │ │ ├── Evt.py │ │ │ ├── Fm.py │ │ │ ├── Icn.py │ │ │ ├── OSA.py │ │ │ ├── Qd.py │ │ │ ├── Snd.py │ │ │ ├── TE.py │ │ │ ├── Win.py │ │ │ ├── Alias.py │ │ │ ├── Drag.py │ │ │ ├── File.py │ │ │ ├── Folder.py │ │ │ ├── Help.py │ │ │ ├── Launch.py │ │ │ ├── List.py │ │ │ ├── Menu.py │ │ │ ├── Mlte.py │ │ │ ├── Qdoffs.py │ │ │ ├── Scrap.py │ │ │ ├── IBCarbon.py │ │ │ ├── CarbonEvt.py │ │ │ ├── Sndihooks.py │ │ │ ├── Res.py │ │ │ ├── Qt.py │ │ │ ├── AppleHelp.py │ │ │ ├── IBCarbonRuntime.py │ │ │ └── __init__.py │ │ ├── errors.rsrc │ │ ├── dialogs.rsrc │ │ └── macerrors.py │ ├── __phello__.foo.py │ ├── shlex.py │ ├── tarfile.py │ ├── plat-freebsd2 │ │ └── regen │ ├── plat-freebsd3 │ │ └── regen │ ├── xml │ │ ├── etree │ │ │ └── cElementTree.py │ │ └── parsers │ │ │ ├── expat.py │ │ │ └── __init__.py │ ├── msilib │ │ └── __init__.py │ ├── plat-darwin │ │ └── regen │ ├── plat-freebsd4 │ │ └── regen │ ├── plat-freebsd5 │ │ └── regen │ ├── plat-freebsd6 │ │ └── regen │ ├── plat-freebsd7 │ │ └── regen │ ├── plat-netbsd1 │ │ └── regen │ ├── plat-generic │ │ └── regen │ ├── site-packages │ │ └── README │ ├── plat-beos5 │ │ └── regen │ ├── plat-atheos │ │ └── regen │ ├── plat-aix3 │ │ └── regen │ ├── plat-aix4 │ │ └── regen │ ├── wsgiref.egg-info │ ├── plat-next3 │ │ └── regen │ ├── plat-linux2 │ │ └── regen │ ├── plat-irix5 │ │ ├── GLWS.py │ │ └── regen │ ├── plat-irix6 │ │ ├── GLWS.py │ │ └── regen │ ├── plat-unixware7 │ │ └── regen │ └── plat-sunos5 │ │ └── regen ├── install-sh ├── Grammar │ └── Grammar ├── Demo │ ├── md5test │ │ └── foo │ ├── parser │ │ ├── simple.py │ │ ├── docstring.py │ │ └── FILES │ ├── comparisons │ │ └── patterns │ ├── rpc │ │ └── README │ ├── tix │ │ └── bitmaps │ │ │ ├── tix.gif │ │ │ └── bold.xbm │ ├── scripts │ │ └── wh.py │ ├── pdist │ │ ├── rcvs │ │ └── rrcs │ ├── cgi │ │ ├── cgi0.sh │ │ └── cgi3.py │ ├── tkinter │ │ └── guido │ │ │ └── imageview.py │ └── sockets │ │ ├── unixclient.py │ │ └── unicast.py ├── Mac │ ├── Resources │ │ ├── app │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ │ ├── PythonApplet.icns │ │ │ │ ├── PythonInterpreter.icns │ │ │ │ └── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Documentation │ │ │ │ ├── ide │ │ │ │ ├── IDE.gif │ │ │ │ ├── hello_world.gif │ │ │ │ ├── loading_ide.gif │ │ │ │ ├── output_window.gif │ │ │ │ ├── syntax_error.gif │ │ │ │ ├── new_ide_window.gif │ │ │ │ ├── new_window_made.gif │ │ │ │ ├── simple_commands.gif │ │ │ │ ├── making_new_window.gif │ │ │ │ ├── saving_edited_file.gif │ │ │ │ └── entering_in_new_window.gif │ │ │ │ ├── python.gif │ │ │ │ ├── pythonsmall.gif │ │ │ │ └── PackageManager.gif │ │ ├── iconsrc │ │ │ ├── IDE.psd │ │ │ ├── PythonIcon.psd │ │ │ ├── PythonApplet.psd │ │ │ ├── PythonSource.psd │ │ │ ├── PythonWSource.psd │ │ │ ├── PackageManager.psd │ │ │ └── PythonCompiled.psd │ │ └── framework │ │ │ └── English.lproj │ │ │ └── InfoPlist.strings │ ├── Icons │ │ ├── IDLE.icns │ │ ├── Disk Image.icns │ │ ├── PythonSource.icns │ │ ├── Python Folder.icns │ │ ├── PythonCompiled.icns │ │ ├── PythonLauncher.icns │ │ └── ReadMe.txt │ ├── scripts │ │ ├── errors.txt │ │ ├── BuildApplet.icns │ │ └── BuildApplet.rsrc │ ├── Modules │ │ ├── cg │ │ │ ├── CGStubLib │ │ │ ├── CFMLateImport.c │ │ │ ├── CFMLateImport.h │ │ │ └── CGStubLib.readme │ │ └── evt │ │ │ └── evtedit.py │ ├── Demo │ │ ├── resources │ │ │ └── copyres.py │ │ ├── html.icons │ │ │ ├── mkapplet.gif │ │ │ ├── options.gif │ │ │ ├── python.gif │ │ │ ├── createmake.png │ │ │ ├── modulator.gif │ │ │ └── preferences.gif │ │ ├── example1 │ │ │ ├── dnslookup-1.gif │ │ │ └── dnslookup-1.rsrc │ │ ├── example2 │ │ │ ├── dnslookup-2.gif │ │ │ └── dnslookup-2.rsrc │ │ ├── PICTbrowse │ │ │ ├── PICTbrowse.rsrc │ │ │ └── oldPICTbrowse.rsrc │ │ └── applescript │ │ │ └── Disk_Copy │ │ │ ├── Special_Events.py │ │ │ └── Standard_Suite.py │ ├── BuildScript │ │ └── resources │ │ │ └── background.jpg │ └── PythonLauncher │ │ ├── English.lproj │ │ ├── MainMenu.nib │ │ │ └── objects.nib │ │ ├── MyDocument.nib │ │ │ └── objects.nib │ │ └── PreferenceWindow.nib │ │ │ └── objects.nib │ │ └── doscript.h ├── Tools │ ├── modulator │ │ └── Templates │ │ │ ├── copyright │ │ │ ├── object_tp_hash │ │ │ ├── module_head │ │ │ ├── object_mlist │ │ │ ├── object_tp_compare │ │ │ ├── object_tp_dealloc │ │ │ ├── object_tp_print │ │ │ ├── object_tp_repr │ │ │ ├── object_tp_str │ │ │ ├── object_tp_call │ │ │ ├── object_tp_getattr │ │ │ ├── object_tp_setattr │ │ │ ├── object_method │ │ │ └── object_new │ ├── pybench │ │ └── package │ │ │ ├── __init__.py │ │ │ └── submodule.py │ ├── freeze │ │ └── hello.py │ ├── pynche │ │ ├── __init__.py │ │ ├── pynche │ │ └── pynche.pyw │ ├── faqwiz │ │ └── faqcust.py │ ├── buildbot │ │ ├── kill_python.bat │ │ ├── test.bat │ │ ├── kill_python.mak │ │ ├── Makefile │ │ ├── clean.bat │ │ └── build.bat │ ├── i18n │ │ ├── msgfmt.py │ │ └── pygettext.py │ ├── scripts │ │ ├── pydoc │ │ ├── hotshotmain.py │ │ ├── idle │ │ └── pydocgui.pyw │ ├── compiler │ │ └── ACKS │ ├── framer │ │ ├── TODO.txt │ │ └── framer │ │ │ └── __init__.py │ └── webchecker │ │ └── wcmac.py ├── Stackless │ ├── core │ │ └── cframeobject.h │ ├── demo │ │ └── paelike │ │ │ └── PyOpenSteer │ │ │ └── testit.py │ ├── module │ │ └── stacklessmodule.c │ ├── embedemo │ │ └── watchdog-cpp │ │ │ ├── sync.h │ │ │ ├── main.cpp │ │ │ ├── sleeper.h │ │ │ ├── sync.cpp │ │ │ └── sleeper.cpp │ ├── stackless_version.h │ └── platf │ │ └── switch_arm_thumb_gcc.h ├── PC │ ├── python_exe.rc │ ├── _msi.c │ ├── py.ico │ ├── icons.rc │ ├── pyc.ico │ ├── pycon.ico │ ├── python_nt.rc │ ├── icons │ │ └── source.xar │ ├── errmap.mak │ ├── bdist_wininst │ │ ├── PythonPowered.bmp │ │ └── README.txt │ ├── empty.c │ ├── os2vacpp │ │ └── _tkinter.def │ ├── python.mk │ └── icons.mak ├── Parser │ ├── tokenizer_pgen.c │ ├── node.x │ ├── pgen.x │ ├── acceler.x │ ├── bitset.x │ ├── grammar.x │ ├── grammar1.x │ ├── listnode.x │ ├── parser.x │ ├── parsetok.x │ ├── pgenmain.x │ ├── firstsets.x │ ├── metagrammar.x │ ├── printgrammar.x │ └── tokenizer_pgen.x ├── Misc │ ├── ACKS │ ├── developers.txt │ └── indent.pro ├── Doc │ ├── lib │ │ ├── sqlite3 │ │ │ ├── connect_db_1.py │ │ │ ├── connect_db_2.py │ │ │ ├── shared_cache.py │ │ │ ├── execute_1.py │ │ │ ├── execute_3.py │ │ │ ├── parse_colnames.py │ │ │ ├── md5func.py │ │ │ └── execute_2.py │ │ ├── tkinter.tex │ │ ├── libctypes.tex │ │ ├── libheapq.tex │ │ ├── libpopen2.tex │ │ ├── windows.tex │ │ ├── netdata.tex │ │ ├── libsun.tex │ │ ├── fileformats.tex │ │ ├── libmisc.tex │ │ ├── libsgi.tex │ │ ├── archiving.tex │ │ ├── libpython.tex │ │ ├── libunix.tex │ │ ├── modules.tex │ │ └── libmm.tex │ ├── tut │ │ └── tut.tex │ ├── html │ │ └── icons │ │ │ ├── up.gif │ │ │ ├── up.png │ │ │ ├── blank.gif │ │ │ ├── blank.png │ │ │ ├── index.gif │ │ │ ├── index.png │ │ │ ├── next.gif │ │ │ ├── next.png │ │ │ ├── pyfav.gif │ │ │ ├── pyfav.png │ │ │ ├── contents.gif │ │ │ ├── contents.png │ │ │ ├── modules.gif │ │ │ ├── modules.png │ │ │ ├── previous.gif │ │ │ └── previous.png │ ├── whatsnew │ │ └── Makefile │ ├── tools │ │ ├── fix_hack │ │ ├── whichlibs │ │ └── fix_libaux.sed │ ├── perl │ │ ├── isilo.perl │ │ └── howto.perl │ ├── texinputs │ │ └── python.ist │ └── ext │ │ └── setup.py ├── Objects │ ├── obmalloc.x │ └── listsort.txt ├── PCbuild │ ├── python.iss │ ├── installer.bmp │ ├── python20.wse │ ├── build_ssl.bat │ └── db.build ├── PCbuild8 │ ├── python.iss │ ├── installer.bmp │ ├── python20.wse │ └── db.build ├── Python │ ├── mysnprintf.x │ ├── getplatform.c │ └── dynload_stub.c ├── RISCOS │ ├── support │ │ ├── !Run │ │ ├── !Sprites │ │ ├── AddToPath │ │ └── !Sprites22 │ └── Python │ │ └── getcwd_riscos.c ├── Modules │ ├── _heapqmodule.c │ ├── _sqlite │ │ ├── row.c │ │ ├── row.h │ │ ├── util.c │ │ ├── util.h │ │ ├── cache.c │ │ ├── cache.h │ │ ├── cursor.c │ │ ├── cursor.h │ │ ├── module.c │ │ ├── module.h │ │ ├── statement.c │ │ ├── statement.h │ │ ├── connection.c │ │ ├── connection.h │ │ ├── sqlitecompat.h │ │ ├── prepare_protocol.c │ │ └── prepare_protocol.h │ ├── unicodedata.c │ ├── zlib │ │ └── ChangeLog │ └── _ctypes │ │ └── _ctypes_test.h └── Include │ └── ast.h ├── zlib-1.2.3 ├── contrib │ ├── blast │ │ ├── test.txt │ │ ├── README │ │ ├── test.pk │ │ └── Makefile │ ├── infback9 │ │ └── README │ ├── README.contrib │ ├── puff │ │ ├── zeros.raw │ │ └── Makefile │ ├── masmx64 │ │ ├── bld_ml64.bat │ │ ├── gvmat64.obj │ │ └── inffasx64.obj │ ├── dotzlib │ │ ├── DotZLib.chm │ │ └── DotZLib │ │ │ ├── DotZLib.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── Inflater.cs │ │ │ ├── UnitTests.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── GZipStream.cs │ │ │ └── CircularBuffer.cs │ ├── masmx86 │ │ ├── bld_ml32.bat │ │ ├── gvmat32.asm │ │ ├── gvmat32.obj │ │ ├── inffas32.obj │ │ └── mkasm.bat │ ├── delphi │ │ └── ZLibConst.pas │ ├── testzlib │ │ └── testzlib.txt │ └── untgz │ │ └── Makefile ├── ChangeLog ├── .deflate.c.swn ├── .deflate.c.swo ├── .deflate.c.swp ├── .zutil.h.swp ├── old │ ├── zlib.html │ └── README └── win32 │ └── VisualC.txt ├── NDSPython ├── nitrofiles │ ├── xxx.py │ ├── color.bin │ ├── python │ │ └── lib │ │ │ └── python25.zip │ └── YYY.PY └── arm9 │ ├── data │ ├── drunkenlogo1.png │ └── drunkenlogo.grit │ └── source │ └── extern.h └── wrap_libnds └── Makefile.arm7 /slp-250/Lib/bdb.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/cgi.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/cmd.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/csv.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/dis.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/install-sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Grammar/Grammar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/Bastion.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/Cookie.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/aifc.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/anydbm.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/asynchat.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/asyncore.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/atexit.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/audiodev.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/base64.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/binhex.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bisect.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/db.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/cProfile.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/calendar.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/cgitb.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/chunk.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/code.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/codecs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/codeop.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/colorsys.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/commands.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/copy.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/copy_reg.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/dbhash.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/decimal.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/difflib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/dircache.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/doctest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/dumbdbm.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/filecmp.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/fnmatch.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/fpformat.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ftplib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/getopt.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/getpass.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/gettext.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/glob.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/gzip.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/hashlib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/heapq.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/hmac.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/htmllib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/httplib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ihooks.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/imaplib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/imghdr.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/imputil.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/inspect.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/keyword.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/locale.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/macpath.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/mailbox.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Demo/md5test/foo: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /slp-250/Lib/CGIHTTPServer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ConfigParser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/HTMLParser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/dbobj.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/dbrecio.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/dbutils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compileall.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/ast.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/misc.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/contextlib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/cookielib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/curses/ascii.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/curses/panel.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/cmd.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/log.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/dummy_thread.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/charset.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/errors.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/header.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/message.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/parser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/gbk.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/hz.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/fileinput.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/formatter.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/functools.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/gopherlib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/hotshot/log.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/hotshot/stats.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/NEWS.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/help.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/idle.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/idle.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/idle.pyw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/rpc.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/run.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/Canvas.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/Dialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/FixTk.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/Tix.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/Tkdnd.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/tkFont.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/turtle.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/linecache.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/macurl2path.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/BaseHTTPServer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/DocXMLRPCServer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/dbshelve.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/dbtables.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/consts.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/future.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/pyassem.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/pycodegen.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/symbols.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/syntax.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/visitor.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/_endian.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/wintypes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/curses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/curses/has_key.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/curses/textpad.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/curses/wrapper.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/core.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/debug.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/dep_util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/dir_util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/dist.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/errors.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/filelist.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/spawn.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/version.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/dummy_threading.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/_parseaddr.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/base64mime.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/encoders.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/feedparser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/generator.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/iterators.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/mime/audio.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/mime/base.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/mime/image.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/mime/message.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/mime/text.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/quoprimime.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/aliases.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/ascii.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/big5.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/charmap.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp037.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1006.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1026.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1140.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1250.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1251.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1252.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1253.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1254.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1255.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1256.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1257.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp1258.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp424.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp437.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp500.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp737.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp775.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp850.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp852.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp855.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp856.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp857.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp860.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp861.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp862.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp863.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp864.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp865.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp866.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp869.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp874.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp875.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp932.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp949.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/cp950.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/euc_jp.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/euc_kr.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/gb18030.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/gb2312.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/idna.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/johab.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/koi8_r.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/koi8_u.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/latin_1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mbcs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/palmos.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/ptcp154.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/punycode.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/rot_13.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/tis_620.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/utf_16.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/utf_7.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/utf_8.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/uu_codec.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/hotshot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/hotshot/stones.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/htmlentitydefs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/AutoExpand.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Bindings.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/CREDITS.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/CallTips.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Debugger.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Delegator.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/FileList.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/GrepDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/HISTORY.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/IOBinding.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Icons/tk.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/MultiCall.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ParenMatch.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Percolator.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/PyParse.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/PyShell.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ToolTip.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/TreeWidget.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/WindowList.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ZoomHeight.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/extend.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/idlever.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/tabpage.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/testcode.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/textView.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/FileDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/Tkconstants.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/Tkinter.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/logging/config.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/logging/handlers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_1413192.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_all.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_basics.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_compare.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_compat.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_dbobj.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_join.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_lock.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_misc.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_pickle.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_queue.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_recno.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_thread.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/compiler/transformer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/macholib/dyld.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/macholib/dylib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/runtests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_anon.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_arrays.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_cast.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_cfuncs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_find.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_init.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_libc.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_repr.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_sizes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_values.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_win32.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/archive_util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/bcppcompiler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/ccompiler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/bdist.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/build.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/clean.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/sdist.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/emxccompiler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/extension.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/fancy_getopt.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/file_util.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/msvccompiler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/sysconfig.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/tests/support.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/text_file.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/unixccompiler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/mime/application.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/mime/multipart.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/mime/nonmultipart.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_01.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_02.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_03.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_04.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_05.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_06.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_07.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_08.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_09.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_10.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_11.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_12.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_13.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_14.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_15.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_16.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_17.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_18.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_19.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_20.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_21.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_22.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_23.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_24.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_25.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_26.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_27.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_28.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_29.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_30.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_31.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_32.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_33.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_34.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_35.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_36.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_37.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_38.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_39.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_40.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_41.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_42.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_43.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_44.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/test_email.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/base64_codec.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/big5hkscs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/bz2_codec.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/euc_jis_2004.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/euc_jisx0213.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/hex_codec.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/hp_roman8.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso2022_jp.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso2022_jp_1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso2022_jp_2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso2022_jp_3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso2022_kr.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_10.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_11.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_13.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_14.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_15.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_16.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_4.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_5.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_6.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_7.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_8.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso8859_9.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_arabic.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_centeuro.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_croatian.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_cyrillic.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_farsi.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_greek.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_iceland.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_latin2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_roman.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_romanian.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/mac_turkish.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/quopri_codec.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/shift_jis.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/string_escape.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/undefined.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/utf_16_be.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/utf_16_le.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/utf_8_sig.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/zlib_codec.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/AutoComplete.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/CallTipWindow.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ClassBrowser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/CodeContext.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ColorDelegator.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/EditorWindow.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/FormatParagraph.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/HyperParser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Icons/folder.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Icons/idle.icns: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Icons/plusnode.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Icons/python.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/IdleHistory.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/MultiStatusBar.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ObjectBrowser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/OutputWindow.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/PathBrowser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/RemoteDebugger.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ReplaceDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ScriptBinding.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/ScrolledList.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/SearchDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/SearchEngine.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/StackViewer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/UndoDelegator.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/aboutDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/config-keys.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/config-main.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/configDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/configHandler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/macosxSupport.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/ScrolledText.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/SimpleDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/tkColorChooser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/tkCommonDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/tkFileDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/tkMessageBox.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/lib-tk/tkSimpleDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_associate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_dbshelve.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_dbtables.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_env_close.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_get_none.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_sequence.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/macholib/README.ctypes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/macholib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/macholib/fetch_macholib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/macholib/framework.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_bitfields.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_buffers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_byteswap.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_callbacks.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_checkretval.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_errcheck.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_funcptr.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_functions.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_incomplete.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_integers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_internals.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_keeprefs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_loading.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_macholib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_numbers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_objects.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_parameters.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_pointers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_prototypes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_python_api.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_refcounts.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_slicing.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_stringptr.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_strings.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_structures.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_unicode.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/bdist_dumb.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/bdist_msi.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/bdist_rpm.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/build_clib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/build_ext.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/build_py.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/config.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/install.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/register.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/upload.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/wininst-6.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/cygwinccompiler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/mwerkscompiler.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/tests/test_dist.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/tests/test_install.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/versionpredicate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/PyBanner048.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/audiotest.au: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/data/msg_12a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/test_email_codecs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso2022_jp_2004.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/iso2022_jp_ext.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/raw_unicode_escape.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/shift_jis_2004.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/shift_jisx0213.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/unicode_escape.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/encodings/unicode_internal.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/AutoCompleteWindow.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Icons/minusnode.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/Icons/openfolder.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/RemoteObjectBrowser.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/SearchDialogBase.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/WidgetRedirector.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/config-extensions.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/config-highlight.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/configHelpSourceEdit.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/dynOptionMenuWidget.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/keybindingDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLPytX -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/copyright: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Tools/pybench/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Tools/pybench/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/bsddb/test/test_cursor_pget_bug.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/macholib/fetch_macholib.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_array_in_pointer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_as_parameter.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_memfunctions.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_random_things.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_returnfuncptrs.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_simplesubclasses.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_struct_fields.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_varsize_struct.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/bdist_wininst.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/build_scripts.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/command_template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/install_data.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/install_headers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/install_lib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/install_scripts.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/wininst-7.1.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/tests/test_build_py.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/test_email_renamed.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/test_email_torture.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/idlelib/configSectionNameDialog.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/blast/test.txt: -------------------------------------------------------------------------------- 1 | AIAIAIAIAIAIA -------------------------------------------------------------------------------- /slp-250/Lib/ctypes/test/test_unaligned_structures.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/command/install_egg_info.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/tests/test_build_scripts.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/tests/test_install_scripts.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/distutils/tests/test_versionpredicate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slp-250/Lib/email/test/test_email_codecs_renamed.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NDSPython/nitrofiles/xxx.py: -------------------------------------------------------------------------------- 1 | def f(): 2 | print "TEST" 3 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/AE.py: -------------------------------------------------------------------------------- 1 | from _AE import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/AH.py: -------------------------------------------------------------------------------- 1 | from _AH import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/App.py: -------------------------------------------------------------------------------- 1 | from _App import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/CF.py: -------------------------------------------------------------------------------- 1 | from _CF import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/CG.py: -------------------------------------------------------------------------------- 1 | from _CG import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Cm.py: -------------------------------------------------------------------------------- 1 | from _Cm import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Ctl.py: -------------------------------------------------------------------------------- 1 | from _Ctl import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Dlg.py: -------------------------------------------------------------------------------- 1 | from _Dlg import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Evt.py: -------------------------------------------------------------------------------- 1 | from _Evt import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Fm.py: -------------------------------------------------------------------------------- 1 | from _Fm import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Icn.py: -------------------------------------------------------------------------------- 1 | from _Icn import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/OSA.py: -------------------------------------------------------------------------------- 1 | from _OSA import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Qd.py: -------------------------------------------------------------------------------- 1 | from _Qd import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Snd.py: -------------------------------------------------------------------------------- 1 | from _Snd import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/TE.py: -------------------------------------------------------------------------------- 1 | from _TE import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Win.py: -------------------------------------------------------------------------------- 1 | from _Win import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /slp-250/Lib/test/cfgparser.1: -------------------------------------------------------------------------------- 1 | [Foo Bar] 2 | foo=newbar 3 | -------------------------------------------------------------------------------- /slp-250/Tools/freeze/hello.py: -------------------------------------------------------------------------------- 1 | print 'Hello world...' 2 | -------------------------------------------------------------------------------- /slp-250/Demo/parser/simple.py: -------------------------------------------------------------------------------- 1 | def f(): "maybe a docstring" 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Alias.py: -------------------------------------------------------------------------------- 1 | from _Alias import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Drag.py: -------------------------------------------------------------------------------- 1 | from _Drag import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/File.py: -------------------------------------------------------------------------------- 1 | from _File import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Folder.py: -------------------------------------------------------------------------------- 1 | from _Folder import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Help.py: -------------------------------------------------------------------------------- 1 | from _Help import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Launch.py: -------------------------------------------------------------------------------- 1 | from _Launch import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/List.py: -------------------------------------------------------------------------------- 1 | from _List import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Menu.py: -------------------------------------------------------------------------------- 1 | from _Menu import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Mlte.py: -------------------------------------------------------------------------------- 1 | from _Mlte import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Qdoffs.py: -------------------------------------------------------------------------------- 1 | from _Qdoffs import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Scrap.py: -------------------------------------------------------------------------------- 1 | from _Scrap import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print '我' 3 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_nis: -------------------------------------------------------------------------------- 1 | test_nis 2 | nis.maps() 3 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_openpty: -------------------------------------------------------------------------------- 1 | test_openpty 2 | Ping! 3 | -------------------------------------------------------------------------------- /slp-250/Demo/parser/docstring.py: -------------------------------------------------------------------------------- 1 | """Some documentation. 2 | """ 3 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/IBCarbon.py: -------------------------------------------------------------------------------- 1 | from _IBCarbon import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_resource: -------------------------------------------------------------------------------- 1 | test_resource 2 | True 3 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/CarbonEvt.py: -------------------------------------------------------------------------------- 1 | from _CarbonEvt import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Sndihooks.py: -------------------------------------------------------------------------------- 1 | from _Sndihooks import * 2 | -------------------------------------------------------------------------------- /slp-250/Lib/test/test_xdrlib.py: -------------------------------------------------------------------------------- 1 | import xdrlib 2 | 3 | xdrlib._test() 4 | -------------------------------------------------------------------------------- /slp-250/Stackless/core/cframeobject.h: -------------------------------------------------------------------------------- 1 | 2 | int init_cframetype(void); 3 | -------------------------------------------------------------------------------- /slp-250/Lib/test/badsyntax_nocaret.py: -------------------------------------------------------------------------------- 1 | def f(x): 2 | [x for x in x] = x 3 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_rgbimg: -------------------------------------------------------------------------------- 1 | test_rgbimg 2 | RGBimg test suite: 3 | -------------------------------------------------------------------------------- /slp-250/PC/python_exe.rc: -------------------------------------------------------------------------------- 1 | 1 ICON DISCARDABLE "pycon.ico" 2 | -------------------------------------------------------------------------------- /slp-250/Parser/tokenizer_pgen.c: -------------------------------------------------------------------------------- 1 | #define PGEN 2 | #include "tokenizer.c" 3 | -------------------------------------------------------------------------------- /slp-250/Demo/comparisons/patterns: -------------------------------------------------------------------------------- 1 | ^def 2 | ^class 3 | ^import 4 | ^from 5 | -------------------------------------------------------------------------------- /slp-250/Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_signal: -------------------------------------------------------------------------------- 1 | test_signal 2 | starting pause() loop... 3 | -------------------------------------------------------------------------------- /slp-250/Lib/test/test_bastion.py: -------------------------------------------------------------------------------- 1 | ##import Bastion 2 | ## 3 | ##Bastion._test() 4 | -------------------------------------------------------------------------------- /slp-250/Tools/pynche/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /slp-250/Misc/ACKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Misc/ACKS -------------------------------------------------------------------------------- /slp-250/PC/_msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PC/_msi.c -------------------------------------------------------------------------------- /slp-250/PC/py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PC/py.ico -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/infback9/README: -------------------------------------------------------------------------------- 1 | See infback9.h for what this is and how to use it. 2 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/sqlite3/connect_db_1.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | 3 | con = sqlite3.connect("mydb") 4 | -------------------------------------------------------------------------------- /slp-250/Lib/__phello__.foo.py: -------------------------------------------------------------------------------- 1 | # This file exists as a helper for the test.test_frozen module. 2 | -------------------------------------------------------------------------------- /slp-250/Lib/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/shlex.py -------------------------------------------------------------------------------- /slp-250/Lib/test/empty.vbs: -------------------------------------------------------------------------------- 1 | 'Empty VBS file, does nothing. Helper for Lib\test\test_startfile.py. -------------------------------------------------------------------------------- /slp-250/PC/icons.rc: -------------------------------------------------------------------------------- 1 | 101 ICON "py.ico" 2 | 102 ICON "pyc.ico" 3 | 103 ICON "pycon.ico" 4 | 5 | -------------------------------------------------------------------------------- /slp-250/PC/pyc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PC/pyc.ico -------------------------------------------------------------------------------- /slp-250/PC/pycon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PC/pycon.ico -------------------------------------------------------------------------------- /zlib-1.2.3/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/ChangeLog -------------------------------------------------------------------------------- /slp-250/Doc/lib/sqlite3/connect_db_2.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | 3 | con = sqlite3.connect(":memory:") 4 | -------------------------------------------------------------------------------- /slp-250/Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/tarfile.py -------------------------------------------------------------------------------- /slp-250/Parser/node.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/node.x -------------------------------------------------------------------------------- /slp-250/Parser/pgen.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/pgen.x -------------------------------------------------------------------------------- /slp-250/Demo/rpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Demo/rpc/README -------------------------------------------------------------------------------- /slp-250/Doc/tut/tut.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/tut/tut.tex -------------------------------------------------------------------------------- /slp-250/Lib/plat-freebsd2/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | h2py -i '(u_long)' /usr/include/netinet/in.h 4 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_frozen: -------------------------------------------------------------------------------- 1 | test_frozen 2 | Hello world... 3 | Hello world... 4 | Hello world... 5 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_pty: -------------------------------------------------------------------------------- 1 | test_pty 2 | I wish to buy a fish license. 3 | For my pet fish, Eric. 4 | -------------------------------------------------------------------------------- /slp-250/PC/python_nt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PC/python_nt.rc -------------------------------------------------------------------------------- /slp-250/Parser/acceler.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/acceler.x -------------------------------------------------------------------------------- /slp-250/Parser/bitset.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/bitset.x -------------------------------------------------------------------------------- /slp-250/Parser/grammar.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/grammar.x -------------------------------------------------------------------------------- /slp-250/Parser/grammar1.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/grammar1.x -------------------------------------------------------------------------------- /slp-250/Parser/listnode.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/listnode.x -------------------------------------------------------------------------------- /slp-250/Parser/parser.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/parser.x -------------------------------------------------------------------------------- /slp-250/Parser/parsetok.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/parsetok.x -------------------------------------------------------------------------------- /slp-250/Parser/pgenmain.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/pgenmain.x -------------------------------------------------------------------------------- /zlib-1.2.3/.deflate.c.swn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/.deflate.c.swn -------------------------------------------------------------------------------- /zlib-1.2.3/.deflate.c.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/.deflate.c.swo -------------------------------------------------------------------------------- /zlib-1.2.3/.deflate.c.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/.deflate.c.swp -------------------------------------------------------------------------------- /zlib-1.2.3/.zutil.h.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/.zutil.h.swp -------------------------------------------------------------------------------- /zlib-1.2.3/old/zlib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/old/zlib.html -------------------------------------------------------------------------------- /slp-250/Doc/lib/tkinter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/lib/tkinter.tex -------------------------------------------------------------------------------- /slp-250/Lib/plat-freebsd3/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | h2py -i '(u_long)' /usr/include/netinet/in.h 4 | 5 | -------------------------------------------------------------------------------- /slp-250/Lib/test/185test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/185test.db -------------------------------------------------------------------------------- /slp-250/Lib/xml/etree/cElementTree.py: -------------------------------------------------------------------------------- 1 | # Wrapper module for _elementtree 2 | 3 | from _elementtree import * 4 | -------------------------------------------------------------------------------- /slp-250/Mac/Icons/IDLE.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Icons/IDLE.icns -------------------------------------------------------------------------------- /slp-250/Misc/developers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Misc/developers.txt -------------------------------------------------------------------------------- /slp-250/Objects/obmalloc.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Objects/obmalloc.x -------------------------------------------------------------------------------- /slp-250/PC/icons/source.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PC/icons/source.xar -------------------------------------------------------------------------------- /slp-250/PCbuild/python.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PCbuild/python.iss -------------------------------------------------------------------------------- /slp-250/PCbuild8/python.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PCbuild8/python.iss -------------------------------------------------------------------------------- /slp-250/Parser/firstsets.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/firstsets.x -------------------------------------------------------------------------------- /slp-250/Python/mysnprintf.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Python/mysnprintf.x -------------------------------------------------------------------------------- /slp-250/RISCOS/support/!Run: -------------------------------------------------------------------------------- 1 | .!Boot 2 | TaskWindow "python" -name "Python" -quit -display -wimpslot 1248k -------------------------------------------------------------------------------- /slp-250/Tools/faqwiz/faqcust.py: -------------------------------------------------------------------------------- 1 | # Add your customizations here -- modified copies of what's in faqconf.py. 2 | -------------------------------------------------------------------------------- /NDSPython/nitrofiles/color.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/NDSPython/nitrofiles/color.bin -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/up.gif -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/up.png -------------------------------------------------------------------------------- /slp-250/Doc/lib/libctypes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/lib/libctypes.tex -------------------------------------------------------------------------------- /slp-250/Doc/lib/libheapq.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/lib/libheapq.tex -------------------------------------------------------------------------------- /slp-250/Doc/lib/libpopen2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/lib/libpopen2.tex -------------------------------------------------------------------------------- /slp-250/Doc/whatsnew/Makefile: -------------------------------------------------------------------------------- 1 | 2 | check: 3 | ../../python.exe ../../Tools/scripts/texcheck.py whatsnew25.tex 4 | -------------------------------------------------------------------------------- /slp-250/Lib/msilib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/msilib/__init__.py -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/dbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/sqlite3/dbapi2.py -------------------------------------------------------------------------------- /slp-250/Lib/test/audiotest.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/audiotest.au -------------------------------------------------------------------------------- /slp-250/Lib/test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/test_csv.py -------------------------------------------------------------------------------- /slp-250/Lib/test/test_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/test_sax.py -------------------------------------------------------------------------------- /slp-250/Lib/test/test_shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/test_shlex.py -------------------------------------------------------------------------------- /slp-250/Lib/test/testtar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/testtar.tar -------------------------------------------------------------------------------- /slp-250/Mac/scripts/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/scripts/errors.txt -------------------------------------------------------------------------------- /slp-250/Modules/_heapqmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_heapqmodule.c -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/row.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/row.c -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/row.h -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/util.c -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/util.h -------------------------------------------------------------------------------- /slp-250/Modules/unicodedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/unicodedata.c -------------------------------------------------------------------------------- /slp-250/Modules/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/zlib/ChangeLog -------------------------------------------------------------------------------- /slp-250/Objects/listsort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Objects/listsort.txt -------------------------------------------------------------------------------- /slp-250/PCbuild/installer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PCbuild/installer.bmp -------------------------------------------------------------------------------- /slp-250/PCbuild/python20.wse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PCbuild/python20.wse -------------------------------------------------------------------------------- /slp-250/PCbuild8/installer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PCbuild8/installer.bmp -------------------------------------------------------------------------------- /slp-250/PCbuild8/python20.wse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PCbuild8/python20.wse -------------------------------------------------------------------------------- /slp-250/Parser/metagrammar.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/metagrammar.x -------------------------------------------------------------------------------- /slp-250/Parser/printgrammar.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/printgrammar.x -------------------------------------------------------------------------------- /slp-250/Tools/buildbot/kill_python.bat: -------------------------------------------------------------------------------- 1 | cd Tools\buildbot 2 | nmake /C /S /f kill_python.mak 3 | kill_python.exe 4 | -------------------------------------------------------------------------------- /slp-250/Tools/i18n/msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Tools/i18n/msgfmt.py -------------------------------------------------------------------------------- /slp-250/Demo/tix/bitmaps/tix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Demo/tix/bitmaps/tix.gif -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/blank.gif -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/blank.png -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/index.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/index.gif -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/index.png -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/next.gif -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/next.png -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/pyfav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/pyfav.gif -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/pyfav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/pyfav.png -------------------------------------------------------------------------------- /slp-250/Doc/tools/fix_hack: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sed -e 's/{\\ptt[ ]*\\char[ ]*'"'"'137}/_/g' <"$1" > "@$1" && mv "@$1" $1 3 | -------------------------------------------------------------------------------- /slp-250/Doc/tools/whichlibs: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sed -n 's%^\\input{\(lib[a-zA-Z0-9_]*\)}.*%../lib/\1.tex%p' ../lib/lib.tex 3 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/errors.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/plat-mac/errors.rsrc -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/sqlite3/__init__.py -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_ossaudiodev: -------------------------------------------------------------------------------- 1 | test_ossaudiodev 2 | playing test sound file (expected running time: 2.93 sec) 3 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_popen: -------------------------------------------------------------------------------- 1 | test_popen 2 | Test popen: 3 | popen seemed to process the command-line correctly 4 | -------------------------------------------------------------------------------- /slp-250/Lib/test/sgml_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/sgml_input.html -------------------------------------------------------------------------------- /slp-250/Lib/test/test_marshal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/test_marshal.py -------------------------------------------------------------------------------- /slp-250/Lib/test/test_pep263.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/test_pep263.py -------------------------------------------------------------------------------- /slp-250/Mac/Modules/cg/CGStubLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Modules/cg/CGStubLib -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/cache.c -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/cache.h -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/cursor.c -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/cursor.h -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/module.c -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/module.h -------------------------------------------------------------------------------- /slp-250/Parser/tokenizer_pgen.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Parser/tokenizer_pgen.x -------------------------------------------------------------------------------- /slp-250/RISCOS/support/!Sprites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/RISCOS/support/!Sprites -------------------------------------------------------------------------------- /slp-250/RISCOS/support/AddToPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/RISCOS/support/AddToPath -------------------------------------------------------------------------------- /slp-250/Tools/buildbot/test.bat: -------------------------------------------------------------------------------- 1 | @rem Used by the buildbot "test" step. 2 | cd PCbuild 3 | call rt.bat -d -q -uall -rw 4 | -------------------------------------------------------------------------------- /slp-250/Tools/i18n/pygettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Tools/i18n/pygettext.py -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/blast/README: -------------------------------------------------------------------------------- 1 | Read blast.h for purpose and usage. 2 | 3 | Mark Adler 4 | madler@alumni.caltech.edu 5 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/blast/test.pk -------------------------------------------------------------------------------- /slp-250/Demo/scripts/wh.py: -------------------------------------------------------------------------------- 1 | # This is here so I can use 'wh' instead of 'which' in '~/bin/generic_python' 2 | import which 3 | -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/contents.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/contents.gif -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/contents.png -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/modules.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/modules.gif -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/modules.png -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/previous.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/previous.gif -------------------------------------------------------------------------------- /slp-250/Doc/html/icons/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Doc/html/icons/previous.png -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/dialogs.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/plat-mac/dialogs.rsrc -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/macerrors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/plat-mac/macerrors.py -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/test/dbapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/sqlite3/test/dbapi.py -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/test/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/sqlite3/test/factory.py -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/test/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/sqlite3/test/hooks.py -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/test/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/sqlite3/test/types.py -------------------------------------------------------------------------------- /slp-250/Lib/test/test_cookielib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/test/test_cookielib.py -------------------------------------------------------------------------------- /slp-250/Mac/Icons/Disk Image.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Icons/Disk Image.icns -------------------------------------------------------------------------------- /slp-250/Mac/Icons/PythonSource.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Icons/PythonSource.icns -------------------------------------------------------------------------------- /slp-250/Modules/_ctypes/_ctypes_test.h: -------------------------------------------------------------------------------- 1 | extern int _testfunc_i_bhilfd(char b, short h, int i, long l, float f, double d); 2 | -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/statement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/statement.c -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/statement.h -------------------------------------------------------------------------------- /slp-250/RISCOS/Python/getcwd_riscos.c: -------------------------------------------------------------------------------- 1 | char *getcwd(char *buf, int size) 2 | { 3 | buf[0] = '\0'; 4 | return buf; 5 | } 6 | -------------------------------------------------------------------------------- /slp-250/RISCOS/support/!Sprites22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/RISCOS/support/!Sprites22 -------------------------------------------------------------------------------- /slp-250/Tools/scripts/pydoc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import pydoc 4 | if __name__ == '__main__': 5 | pydoc.cli() 6 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/README.contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/README.contrib -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /NDSPython/arm9/data/drunkenlogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/NDSPython/arm9/data/drunkenlogo1.png -------------------------------------------------------------------------------- /slp-250/Mac/Demo/resources/copyres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/resources/copyres.py -------------------------------------------------------------------------------- /slp-250/Mac/Icons/Python Folder.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Icons/Python Folder.icns -------------------------------------------------------------------------------- /slp-250/Mac/Icons/PythonCompiled.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Icons/PythonCompiled.icns -------------------------------------------------------------------------------- /slp-250/Mac/Icons/PythonLauncher.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Icons/PythonLauncher.icns -------------------------------------------------------------------------------- /slp-250/Mac/Resources/iconsrc/IDE.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/iconsrc/IDE.psd -------------------------------------------------------------------------------- /slp-250/Mac/scripts/BuildApplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/scripts/BuildApplet.icns -------------------------------------------------------------------------------- /slp-250/Mac/scripts/BuildApplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/scripts/BuildApplet.rsrc -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/connection.c -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/connection.h -------------------------------------------------------------------------------- /slp-250/Stackless/demo/paelike/PyOpenSteer/testit.py: -------------------------------------------------------------------------------- 1 | 2 | import Draw 3 | Draw.initializeGraphics(['test']) 4 | Draw.runGraphics() -------------------------------------------------------------------------------- /slp-250/Tools/buildbot/kill_python.mak: -------------------------------------------------------------------------------- 1 | kill_python.exe: kill_python.c 2 | cl -nologo -o kill_python.exe kill_python.c psapi.lib 3 | -------------------------------------------------------------------------------- /slp-250/Tools/scripts/hotshotmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Tools/scripts/hotshotmain.py -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/masmx64/bld_ml64.bat: -------------------------------------------------------------------------------- 1 | ml64.exe /Flinffasx64 /c /Zi inffasx64.asm 2 | ml64.exe /Flgvmat64 /c /Zi gvmat64.asm 3 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-darwin/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | python$EXE ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h 4 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-freebsd4/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | python ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h 4 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-freebsd5/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | python ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h 4 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-freebsd6/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | python ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h 4 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-freebsd7/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | python ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h 4 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Res.py: -------------------------------------------------------------------------------- 1 | try: 2 | from OverrideFrom23._Res import * 3 | except ImportError: 4 | from _Res import * 5 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-netbsd1/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | python ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h 4 | -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/test/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/sqlite3/test/regression.py -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/test/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/sqlite3/test/transactions.py -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_threadedtempfile: -------------------------------------------------------------------------------- 1 | test_threadedtempfile 2 | Creating 3 | Starting 4 | Reaping 5 | Done: errors 0 ok 1000 6 | -------------------------------------------------------------------------------- /slp-250/Lib/test/test_doctest3.txt: -------------------------------------------------------------------------------- 1 | 2 | Here we check that `__file__` is provided: 3 | 4 | >>> type(__file__) 5 | 6 | -------------------------------------------------------------------------------- /slp-250/Lib/test/test_pickletools.py: -------------------------------------------------------------------------------- 1 | import pickletools 2 | from test import test_support 3 | test_support.run_doctest(pickletools) 4 | -------------------------------------------------------------------------------- /slp-250/Mac/Demo/html.icons/mkapplet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/html.icons/mkapplet.gif -------------------------------------------------------------------------------- /slp-250/Mac/Demo/html.icons/options.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/html.icons/options.gif -------------------------------------------------------------------------------- /slp-250/Mac/Demo/html.icons/python.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/html.icons/python.gif -------------------------------------------------------------------------------- /slp-250/Mac/Modules/cg/CFMLateImport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Modules/cg/CFMLateImport.c -------------------------------------------------------------------------------- /slp-250/Mac/Modules/cg/CFMLateImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Modules/cg/CFMLateImport.h -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/sqlitecompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/sqlitecompat.h -------------------------------------------------------------------------------- /slp-250/PC/errmap.mak: -------------------------------------------------------------------------------- 1 | errmap.h: generrmap.exe 2 | .\generrmap.exe > errmap.h 3 | 4 | genermap.exe: generrmap.c 5 | cl generrmap.c 6 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/dotzlib/DotZLib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/dotzlib/DotZLib.chm -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/masmx64/gvmat64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/masmx64/gvmat64.obj -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/masmx64/inffasx64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/masmx64/inffasx64.obj -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/masmx86/bld_ml32.bat: -------------------------------------------------------------------------------- 1 | ml /coff /Zi /c /Flgvmat32.lst gvmat32.asm 2 | ml /coff /Zi /c /Flinffas32.lst inffas32.asm 3 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/masmx86/gvmat32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/masmx86/gvmat32.asm -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/masmx86/gvmat32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/masmx86/gvmat32.obj -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/masmx86/inffas32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/masmx86/inffas32.obj -------------------------------------------------------------------------------- /slp-250/Demo/parser/FILES: -------------------------------------------------------------------------------- 1 | Demo/parser 2 | Doc/libparser.tex 3 | Lib/AST.py 4 | Lib/symbol.py 5 | Lib/token.py 6 | Modules/parsermodule.c 7 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-generic/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | python$EXE ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h 4 | -------------------------------------------------------------------------------- /slp-250/Lib/sqlite3/test/userfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Lib/sqlite3/test/userfunctions.py -------------------------------------------------------------------------------- /slp-250/Mac/Demo/example1/dnslookup-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/example1/dnslookup-1.gif -------------------------------------------------------------------------------- /slp-250/Mac/Demo/example1/dnslookup-1.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/example1/dnslookup-1.rsrc -------------------------------------------------------------------------------- /slp-250/Mac/Demo/example2/dnslookup-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/example2/dnslookup-2.gif -------------------------------------------------------------------------------- /slp-250/Mac/Demo/example2/dnslookup-2.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/example2/dnslookup-2.rsrc -------------------------------------------------------------------------------- /slp-250/Mac/Demo/html.icons/createmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/html.icons/createmake.png -------------------------------------------------------------------------------- /slp-250/Mac/Demo/html.icons/modulator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/html.icons/modulator.gif -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/prepare_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/prepare_protocol.c -------------------------------------------------------------------------------- /slp-250/Modules/_sqlite/prepare_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Modules/_sqlite/prepare_protocol.h -------------------------------------------------------------------------------- /slp-250/PC/bdist_wininst/PythonPowered.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/PC/bdist_wininst/PythonPowered.bmp -------------------------------------------------------------------------------- /slp-250/Stackless/module/stacklessmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Stackless/module/stacklessmodule.c -------------------------------------------------------------------------------- /slp-250/Tools/scripts/idle: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python 2 | 3 | from idlelib.PyShell import main 4 | if __name__ == '__main__': 5 | main() 6 | -------------------------------------------------------------------------------- /NDSPython/nitrofiles/python/lib/python25.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/NDSPython/nitrofiles/python/lib/python25.zip -------------------------------------------------------------------------------- /slp-250/Mac/Demo/PICTbrowse/PICTbrowse.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/PICTbrowse/PICTbrowse.rsrc -------------------------------------------------------------------------------- /slp-250/Mac/Demo/html.icons/preferences.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/html.icons/preferences.gif -------------------------------------------------------------------------------- /slp-250/Mac/Modules/cg/CGStubLib.readme: -------------------------------------------------------------------------------- 1 | # CGStubLib was created by issuing this command in MPW: 2 | 3 | MakeStub CGStubLib.exp -o CGStubLib 4 | -------------------------------------------------------------------------------- /slp-250/Mac/Resources/iconsrc/PythonIcon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/iconsrc/PythonIcon.psd -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.cs -------------------------------------------------------------------------------- /slp-250/Doc/tools/fix_libaux.sed: -------------------------------------------------------------------------------- 1 | #! /bin/sed -f 2 | s/{\\tt \\hackscore {}\\hackscore {}/\\sectcode{__/ 3 | s/\\hackscore {}\\hackscore {}/__/ 4 | -------------------------------------------------------------------------------- /slp-250/Mac/Demo/PICTbrowse/oldPICTbrowse.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/PICTbrowse/oldPICTbrowse.rsrc -------------------------------------------------------------------------------- /slp-250/Mac/Resources/iconsrc/PythonApplet.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/iconsrc/PythonApplet.psd -------------------------------------------------------------------------------- /slp-250/Mac/Resources/iconsrc/PythonSource.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/iconsrc/PythonSource.psd -------------------------------------------------------------------------------- /slp-250/Mac/Resources/iconsrc/PythonWSource.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/iconsrc/PythonWSource.psd -------------------------------------------------------------------------------- /slp-250/Stackless/embedemo/watchdog-cpp/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Stackless/embedemo/watchdog-cpp/sync.h -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/dotzlib/DotZLib/CodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/dotzlib/DotZLib/CodecBase.cs -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/dotzlib/DotZLib/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/dotzlib/DotZLib/Deflater.cs -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/dotzlib/DotZLib/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/dotzlib/DotZLib/Inflater.cs -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/dotzlib/DotZLib/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/dotzlib/DotZLib/UnitTests.cs -------------------------------------------------------------------------------- /NDSPython/arm9/source/extern.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | void decompress_file(char *filename,unsigned int dst,DecompressType type); -------------------------------------------------------------------------------- /slp-250/Mac/BuildScript/resources/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/BuildScript/resources/background.jpg -------------------------------------------------------------------------------- /slp-250/Mac/Resources/iconsrc/PackageManager.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/iconsrc/PackageManager.psd -------------------------------------------------------------------------------- /slp-250/Mac/Resources/iconsrc/PythonCompiled.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/iconsrc/PythonCompiled.psd -------------------------------------------------------------------------------- /slp-250/Stackless/embedemo/watchdog-cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Stackless/embedemo/watchdog-cpp/main.cpp -------------------------------------------------------------------------------- /slp-250/Stackless/embedemo/watchdog-cpp/sleeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Stackless/embedemo/watchdog-cpp/sleeper.h -------------------------------------------------------------------------------- /slp-250/Stackless/embedemo/watchdog-cpp/sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Stackless/embedemo/watchdog-cpp/sync.cpp -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/dotzlib/DotZLib/ChecksumImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/dotzlib/DotZLib/ChecksumImpl.cs -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/dotzlib/DotZLib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/dotzlib/DotZLib/GZipStream.cs -------------------------------------------------------------------------------- /zlib-1.2.3/win32/VisualC.txt: -------------------------------------------------------------------------------- 1 | 2 | To build zlib using the Microsoft Visual C++ environment, 3 | use the appropriate project from the projects/ directory. 4 | -------------------------------------------------------------------------------- /slp-250/Lib/site-packages/README: -------------------------------------------------------------------------------- 1 | This directory exists so that 3rd party packages can be installed 2 | here. Read the source for site.py for more details. 3 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_new: -------------------------------------------------------------------------------- 1 | test_new 2 | new.module() 3 | new.classobj() 4 | new.instance() 5 | new.instancemethod() 6 | new.function() 7 | new.code() 8 | -------------------------------------------------------------------------------- /slp-250/Lib/xml/parsers/expat.py: -------------------------------------------------------------------------------- 1 | """Interface to the Expat non-validating XML parser.""" 2 | __version__ = '$Revision: 17640 $' 3 | 4 | from pyexpat import * 5 | -------------------------------------------------------------------------------- /slp-250/PC/bdist_wininst/README.txt: -------------------------------------------------------------------------------- 1 | 2 | XXX Write description 3 | XXX Dont't forget to mention upx 4 | 5 | XXX Add pointer to this file into PC/README.txt 6 | -------------------------------------------------------------------------------- /slp-250/Stackless/embedemo/watchdog-cpp/sleeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Stackless/embedemo/watchdog-cpp/sleeper.cpp -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/dotzlib/DotZLib/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/zlib-1.2.3/contrib/dotzlib/DotZLib/CircularBuffer.cs -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/PythonApplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/PythonApplet.icns -------------------------------------------------------------------------------- /slp-250/Misc/indent.pro: -------------------------------------------------------------------------------- 1 | -sob 2 | -nbad 3 | -bap 4 | -br 5 | -nce 6 | -ncs 7 | -npcs 8 | -i8 9 | -ip8 10 | -c25 11 | -T PyObject 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_tp_hash: -------------------------------------------------------------------------------- 1 | 2 | static long 3 | $abbrev$_hash($abbrev$object *self) 4 | { 5 | /* XXXX Return a hash of self (or -1) */ 6 | } 7 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/puff/Makefile: -------------------------------------------------------------------------------- 1 | puff: puff.c puff.h 2 | cc -DTEST -o puff puff.c 3 | 4 | test: puff 5 | puff zeros.raw 6 | 7 | clean: 8 | rm -f puff puff.o 9 | -------------------------------------------------------------------------------- /zlib-1.2.3/old/README: -------------------------------------------------------------------------------- 1 | This directory contains files that have not been updated for zlib 1.2.x 2 | 3 | (Volunteers are encouraged to help clean this up. Thanks.) 4 | -------------------------------------------------------------------------------- /slp-250/Demo/pdist/rcvs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import addpack 4 | addpack.addpack('/home/guido/src/python/Demo/pdist') 5 | 6 | import rcvs 7 | 8 | rcvs.main() 9 | -------------------------------------------------------------------------------- /slp-250/Demo/pdist/rrcs: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import addpack 4 | addpack.addpack('/home/guido/src/python/Demo/pdist') 5 | 6 | import rrcs 7 | 8 | rrcs.main() 9 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_winreg: -------------------------------------------------------------------------------- 1 | test_winreg 2 | Local registry tests worked 3 | Remote registry calls can be tested using 'test_winreg.py --remote \\machine_name' 4 | -------------------------------------------------------------------------------- /slp-250/Mac/Demo/applescript/Disk_Copy/Special_Events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/applescript/Disk_Copy/Special_Events.py -------------------------------------------------------------------------------- /slp-250/Mac/Demo/applescript/Disk_Copy/Standard_Suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Demo/applescript/Disk_Copy/Standard_Suite.py -------------------------------------------------------------------------------- /slp-250/Tools/compiler/ACKS: -------------------------------------------------------------------------------- 1 | Fred L. Drake, Jr. 2 | Mark Hammond 3 | Shane Hathaway 4 | Neil Schemenauer 5 | Evan Simpson 6 | Greg Stein 7 | Bill Tutt 8 | Moshe Zadka 9 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/masmx86/mkasm.bat: -------------------------------------------------------------------------------- 1 | cl /DASMV /I..\.. /O2 /c gvmat32c.c 2 | ml /coff /Zi /c /Flgvmat32.lst gvmat32.asm 3 | ml /coff /Zi /c /Flinffas32.lst inffas32.asm 4 | -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/PythonInterpreter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/PythonInterpreter.icns -------------------------------------------------------------------------------- /slp-250/PC/empty.c: -------------------------------------------------------------------------------- 1 | #include 2 | int __stdcall 3 | WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) 4 | { 5 | return 0; 6 | } -------------------------------------------------------------------------------- /slp-250/Tools/buildbot/Makefile: -------------------------------------------------------------------------------- 1 | all: kill_python.exe 2 | ./kill_python.exe 3 | 4 | kill_python.exe: kill_python.c 5 | gcc -o kill_python.exe kill_python.c -lpsapi 6 | 7 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_global: -------------------------------------------------------------------------------- 1 | test_global 2 | got SyntaxError as expected 3 | got SyntaxError as expected 4 | got SyntaxError as expected 5 | as expected, no SyntaxError 6 | -------------------------------------------------------------------------------- /slp-250/Lib/test/testall.py: -------------------------------------------------------------------------------- 1 | # Backward compatibility -- you should use regrtest instead of this module. 2 | import sys, regrtest 3 | sys.argv[1:] = ["-vv"] 4 | regrtest.main() 5 | -------------------------------------------------------------------------------- /slp-250/Mac/Icons/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The icons for use on MacOS X were created by Jacob Rus 2 | with some feedback from the folks on pythonmac-sig@python.org. 3 | 4 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/module_head: -------------------------------------------------------------------------------- 1 | 2 | #include "Python.h" 3 | 4 | static PyObject *ErrorObject; 5 | 6 | /* ----------------------------------------------------- */ 7 | -------------------------------------------------------------------------------- /slp-250/Mac/PythonLauncher/English.lproj/MainMenu.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/PythonLauncher/English.lproj/MainMenu.nib/objects.nib -------------------------------------------------------------------------------- /slp-250/Mac/Resources/framework/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/framework/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /NDSPython/arm9/data/drunkenlogo.grit: -------------------------------------------------------------------------------- 1 | -W3 2 | # disable alpha and set opaque bit for all pixels 3 | -gT! 4 | 5 | # use lz77 compression 6 | -gzl 7 | 8 | # 16 bit bitmap 9 | -gB16 10 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/Qt.py: -------------------------------------------------------------------------------- 1 | from _Qt import * 2 | try: 3 | _ = AddFilePreview 4 | except: 5 | raise ImportError, "Old (2.3) _Qt.so module loaded in stead of new (2.4) _Qt.so" 6 | -------------------------------------------------------------------------------- /slp-250/Mac/PythonLauncher/English.lproj/MyDocument.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/PythonLauncher/English.lproj/MyDocument.nib/objects.nib -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/blast/Makefile: -------------------------------------------------------------------------------- 1 | blast: blast.c blast.h 2 | cc -DTEST -o blast blast.c 3 | 4 | test: blast 5 | blast < test.pk | cmp - test.txt 6 | 7 | clean: 8 | rm -f blast blast.o 9 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-beos5/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | H2PY=../../Tools/scripts/h2py.py 4 | HEADERS=/boot/develop/headers 5 | 6 | set -v 7 | python $H2PY -i '(u_long)' $HEADERS/be/net/netinet/in.h 8 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/AppleHelp.py: -------------------------------------------------------------------------------- 1 | # Generated from 'AppleHelp.h' 2 | 3 | kAHInternalErr = -10790 4 | kAHInternetConfigPrefErr = -10791 5 | kAHTOCTypeUser = 0 6 | kAHTOCTypeDeveloper = 1 7 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_opcodes: -------------------------------------------------------------------------------- 1 | test_opcodes 2 | 2. Opcodes 3 | XXX Not yet fully implemented 4 | 2.1 try inside for loop 5 | 2.2 raise class exceptions 6 | 2.3 comparing function objects 7 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_mlist: -------------------------------------------------------------------------------- 1 | 2 | static struct PyMethodDef $abbrev$_methods[] = { 3 | $methodlist$ 4 | {NULL, NULL} /* sentinel */ 5 | }; 6 | 7 | /* ---------- */ 8 | 9 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_tp_compare: -------------------------------------------------------------------------------- 1 | 2 | static int 3 | $abbrev$_compare($abbrev$object *v, $abbrev$object *w) 4 | { 5 | /* XXXX Compare objects and return -1, 0 or 1 */ 6 | } 7 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_tp_dealloc: -------------------------------------------------------------------------------- 1 | 2 | static void 3 | $abbrev$_dealloc($abbrev$object *self) 4 | { 5 | /* XXXX Add your own cleanup code here */ 6 | PyMem_DEL(self); 7 | } 8 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/windows.tex: -------------------------------------------------------------------------------- 1 | \chapter{MS Windows Specific Services} 2 | 3 | 4 | This chapter describes modules that are only available on MS Windows 5 | platforms. 6 | 7 | 8 | \localmoduletable 9 | -------------------------------------------------------------------------------- /slp-250/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/PythonLauncher/English.lproj/PreferenceWindow.nib/objects.nib -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/IDE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/IDE.gif -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/python.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/python.gif -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_tp_print: -------------------------------------------------------------------------------- 1 | 2 | static int 3 | $abbrev$_print($abbrev$object *self, FILE *fp, int flags) 4 | { 5 | /* XXXX Add code here to print self to fp */ 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /slp-250/Demo/cgi/cgi0.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | # If you can't get this to work, your web server isn't set up right 4 | 5 | echo Content-type: text/plain 6 | echo 7 | echo Hello world 8 | echo This is cgi0.sh 9 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-atheos/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | python$EXE ../../Tools/scripts/h2py.py -i '\(u_long\)' -i '\(uint32_t\)' -i '\(int\)' -i '\(unsigned int\)' /include/netinet/in.h /include/sys/types.h 4 | -------------------------------------------------------------------------------- /slp-250/Lib/test/badsyntax_future8.py: -------------------------------------------------------------------------------- 1 | """This is a test""" 2 | 3 | from __future__ import * 4 | 5 | def f(x): 6 | def g(y): 7 | return x + y 8 | return g 9 | 10 | print f(2)(4) 11 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/netdata.tex: -------------------------------------------------------------------------------- 1 | \chapter{Internet Data Handling \label{netdata}} 2 | 3 | This chapter describes modules which support handling data formats 4 | commonly used on the Internet. 5 | 6 | \localmoduletable 7 | -------------------------------------------------------------------------------- /slp-250/Lib/test/output/test_popen2: -------------------------------------------------------------------------------- 1 | test_popen2 2 | Test popen2 module: 3 | testing popen2... 4 | testing popen3... 5 | All OK 6 | Testing os module: 7 | testing popen2... 8 | testing popen3... 9 | All OK 10 | -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/pythonsmall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/pythonsmall.gif -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/PackageManager.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/PackageManager.gif -------------------------------------------------------------------------------- /slp-250/Python/getplatform.c: -------------------------------------------------------------------------------- 1 | 2 | #include "Python.h" 3 | 4 | #ifndef PLATFORM 5 | #define PLATFORM "unknown" 6 | #endif 7 | 8 | const char * 9 | Py_GetPlatform(void) 10 | { 11 | return PLATFORM; 12 | } 13 | -------------------------------------------------------------------------------- /slp-250/Demo/cgi/cgi3.py: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/python 2 | 3 | """CGI test 3 (persistent data).""" 4 | 5 | import cgitb; cgitb.enable() 6 | 7 | from wiki import main 8 | 9 | if __name__ == "__main__": 10 | main() 11 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/libsun.tex: -------------------------------------------------------------------------------- 1 | \chapter{SunOS Specific Services} 2 | \label{sunos} 3 | 4 | The modules described in this chapter provide interfaces to features 5 | that are unique to SunOS 5 (also known as Solaris version 2). 6 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/sqlite3/shared_cache.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | 3 | # The shared cache is only available in SQLite versions 3.3.3 or later 4 | # See the SQLite documentaton for details. 5 | 6 | sqlite3.enable_shared_cache(True) 7 | -------------------------------------------------------------------------------- /slp-250/Lib/test/crashers/infinite_rec_4.py: -------------------------------------------------------------------------------- 1 | 2 | # http://python.org/sf/1202533 3 | 4 | if __name__ == '__main__': 5 | lst = [apply] 6 | lst.append(lst) 7 | apply(*lst) # segfault: infinite recursion in C 8 | -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/hello_world.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/hello_world.gif -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/loading_ide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/loading_ide.gif -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/output_window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/output_window.gif -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/syntax_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/syntax_error.gif -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_tp_repr: -------------------------------------------------------------------------------- 1 | 2 | static PyObject * 3 | $abbrev$_repr($abbrev$object *self) 4 | { 5 | PyObject *s; 6 | 7 | /* XXXX Add code here to put self into s */ 8 | return s; 9 | } 10 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_tp_str: -------------------------------------------------------------------------------- 1 | 2 | static PyObject * 3 | $abbrev$_str($abbrev$object *self) 4 | { 5 | PyObject *s; 6 | 7 | /* XXXX Add code here to put self into s */ 8 | return s; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-aix3/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | case `uname -sv` in 3 | 'AIX 3'*) ;; 4 | *) echo Probably not on an AIX 3 system 1>&2 5 | exit 1;; 6 | esac 7 | set -v 8 | h2py.py -i '(u_long)' /usr/include/netinet/in.h 9 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-aix4/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | case `uname -sv` in 3 | 'AIX 4'*) ;; 4 | *) echo Probably not on an AIX 4 system 1>&2 5 | exit 1;; 6 | esac 7 | set -v 8 | h2py.py -i '(u_long)' /usr/include/netinet/in.h 9 | -------------------------------------------------------------------------------- /slp-250/Lib/test/badsyntax_future9.py: -------------------------------------------------------------------------------- 1 | """This is a test""" 2 | 3 | from __future__ import nested_scopes, braces 4 | 5 | def f(x): 6 | def g(y): 7 | return x + y 8 | return g 9 | 10 | print f(2)(4) 11 | -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/new_ide_window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/new_ide_window.gif -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/new_window_made.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/new_window_made.gif -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/simple_commands.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/simple_commands.gif -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/IBCarbonRuntime.py: -------------------------------------------------------------------------------- 1 | # Generated from 'IBCarbonRuntime.h' 2 | 3 | kIBCarbonRuntimeCantFindNibFile = -10960 4 | kIBCarbonRuntimeObjectNotOfRequestedType = -10961 5 | kIBCarbonRuntimeCantFindObject = -10962 6 | -------------------------------------------------------------------------------- /slp-250/Lib/test/test_future2.py: -------------------------------------------------------------------------------- 1 | """This is a test""" 2 | 3 | from __future__ import nested_scopes; import string 4 | 5 | def f(x): 6 | def g(y): 7 | return x + y 8 | return g 9 | 10 | result = f(2)(4) 11 | -------------------------------------------------------------------------------- /slp-250/Lib/xml/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | """Python interfaces to XML parsers. 2 | 3 | This package contains one module: 4 | 5 | expat -- Python wrapper for James Clark's Expat parser, with namespace 6 | support. 7 | 8 | """ 9 | -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/making_new_window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/making_new_window.gif -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/saving_edited_file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/saving_edited_file.gif -------------------------------------------------------------------------------- /slp-250/Stackless/stackless_version.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Stackless Python version string 3 | * created at Tue May 16 13:27:25 2006 by mkversion.py 4 | */ 5 | 6 | /* keep this entry up-to-date */ 7 | #define STACKLESS_VERSION "3.1b3 060516" 8 | -------------------------------------------------------------------------------- /slp-250/Tools/buildbot/clean.bat: -------------------------------------------------------------------------------- 1 | @rem Used by the buildbot "clean" step. 2 | call "%VS71COMNTOOLS%vsvars32.bat" 3 | cd PCbuild 4 | @echo Deleting .pyc/.pyo files ... 5 | python_d.exe rmpyc.py 6 | devenv.com /clean Debug pcbuild.sln 7 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_tp_call: -------------------------------------------------------------------------------- 1 | 2 | static PyObject * 3 | $abbrev$_call($abbrev$object *self, PyObject *args, PyObject *kwargs) 4 | { 5 | /* XXXX Return the result of calling self with argument args */ 6 | } 7 | 8 | -------------------------------------------------------------------------------- /slp-250/Tools/pynche/pynche: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python 2 | 3 | """Run this file under Unix, or when debugging under Windows. 4 | Run the file pynche.pyw under Windows to inhibit the console window. 5 | """ 6 | import Main 7 | Main.main() 8 | -------------------------------------------------------------------------------- /slp-250/Lib/test/badsyntax_future4.py: -------------------------------------------------------------------------------- 1 | """This is a test""" 2 | import __future__ 3 | from __future__ import nested_scopes 4 | 5 | def f(x): 6 | def g(y): 7 | return x + y 8 | return g 9 | 10 | result = f(2)(4) 11 | -------------------------------------------------------------------------------- /slp-250/Tools/pynche/pynche.pyw: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python 2 | 3 | """Run this file under Windows to inhibit the console window. 4 | Run the file pynche.py under Unix or when debugging under Windows. 5 | """ 6 | import Main 7 | Main.main() 8 | -------------------------------------------------------------------------------- /slp-250/Lib/wsgiref.egg-info: -------------------------------------------------------------------------------- 1 | Metadata-Version: 1.0 2 | Name: wsgiref 3 | Version: 0.1.2 4 | Summary: WSGI (PEP 333) Reference Library 5 | Author: Phillip J. Eby 6 | Author-email: web-sig@python.org 7 | License: PSF or ZPL 8 | Platform: UNKNOWN 9 | -------------------------------------------------------------------------------- /slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/entering_in_new_window.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/develer-staff/dspython/HEAD/slp-250/Mac/Resources/app/Resources/English.lproj/Documentation/ide/entering_in_new_window.gif -------------------------------------------------------------------------------- /slp-250/Doc/perl/isilo.perl: -------------------------------------------------------------------------------- 1 | package main; 2 | 3 | $USING_STYLES = 0; 4 | $NO_NAVIGATION = 1; 5 | $INDEX_COLUMNS = 1; 6 | $MODULE_INDEX_COLUMNS = 1; 7 | 8 | sub child_line { 9 | return ''; 10 | } 11 | 12 | 1; # stupid perl... 13 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-next3/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -v 3 | INCLUDE="/NextDeveloper/Headers;/NextDeveloper/Headers/ansi;/NextDeveloper/Headers/bsd" 4 | export INCLUDE 5 | 6 | python ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/bsd/netinet/in.h 7 | -------------------------------------------------------------------------------- /slp-250/Lib/test/badsyntax_future6.py: -------------------------------------------------------------------------------- 1 | """This is a test""" 2 | "this isn't a doc string" 3 | from __future__ import nested_scopes 4 | 5 | def f(x): 6 | def g(y): 7 | return x + y 8 | return g 9 | 10 | result = f(2)(4) 11 | -------------------------------------------------------------------------------- /slp-250/Tools/framer/TODO.txt: -------------------------------------------------------------------------------- 1 | Add spec for getsets. 2 | Generate a distutils setup script. 3 | Handle operator overloading. 4 | Generate traverse and clear methods for GC. 5 | Handle mapping, sequence, buffer protocols. 6 | Finish the todo list. 7 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/fileformats.tex: -------------------------------------------------------------------------------- 1 | \chapter{File Formats} 2 | \label{fileformats} 3 | 4 | The modules described in this chapter parse various miscellaneous file 5 | formats that aren't markup languages or are related to e-mail. 6 | 7 | \localmoduletable 8 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/libmisc.tex: -------------------------------------------------------------------------------- 1 | \chapter{Miscellaneous Services} 2 | \label{misc} 3 | 4 | The modules described in this chapter provide miscellaneous services 5 | that are available in all Python versions. Here's an overview: 6 | 7 | \localmoduletable 8 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-linux2/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | case `uname` in 3 | Linux*) ;; 4 | *) echo Probably not on a Linux system 1>&2 5 | exit 1;; 6 | esac 7 | set -v 8 | h2py -i '(u_long)' /usr/include/sys/types.h /usr/include/netinet/in.h /usr/include/dlfcn.h 9 | -------------------------------------------------------------------------------- /slp-250/PCbuild/build_ssl.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | if not defined HOST_PYTHON ( 3 | if %1 EQU Debug ( 4 | set HOST_PYTHON=python_d.exe 5 | ) ELSE ( 6 | set HOST_PYTHON=python.exe 7 | ) 8 | ) 9 | %HOST_PYTHON% build_ssl.py %1 %2 10 | 11 | -------------------------------------------------------------------------------- /slp-250/Tools/buildbot/build.bat: -------------------------------------------------------------------------------- 1 | @rem Used by the buildbot "compile" step. 2 | cmd /c Tools\buildbot\external.bat 3 | call "%VS71COMNTOOLS%vsvars32.bat" 4 | cmd /q/c Tools\buildbot\kill_python.bat 5 | devenv.com /useenv /build Debug PCbuild\pcbuild.sln 6 | -------------------------------------------------------------------------------- /slp-250/Tools/webchecker/wcmac.py: -------------------------------------------------------------------------------- 1 | import webchecker, sys 2 | webchecker.DEFROOT = "http://www.python.org/python/" 3 | webchecker.MAXPAGE = 50000 4 | webchecker.verbose = 2 5 | sys.argv.append('-x') 6 | webchecker.main() 7 | raw_input("\nCR to exit: ") 8 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/libsgi.tex: -------------------------------------------------------------------------------- 1 | \chapter{SGI IRIX Specific Services} 2 | \label{sgi} 3 | 4 | The modules described in this chapter provide interfaces to features 5 | that are unique to SGI's IRIX operating system (versions 4 and 5). 6 | 7 | \localmoduletable 8 | -------------------------------------------------------------------------------- /slp-250/Lib/test/autotest.py: -------------------------------------------------------------------------------- 1 | # This should be equivalent to running regrtest.py from the cmdline. 2 | # It can be especially handy if you're in an interactive shell, e.g., 3 | # from test import autotest. 4 | 5 | from test import regrtest 6 | regrtest.main() 7 | -------------------------------------------------------------------------------- /slp-250/Lib/test/badsyntax_future3.py: -------------------------------------------------------------------------------- 1 | """This is a test""" 2 | from __future__ import nested_scopes 3 | from __future__ import rested_snopes 4 | 5 | def f(x): 6 | def g(y): 7 | return x + y 8 | return g 9 | 10 | result = f(2)(4) 11 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_tp_getattr: -------------------------------------------------------------------------------- 1 | 2 | static PyObject * 3 | $abbrev$_getattr($abbrev$object *self, char *name) 4 | { 5 | /* XXXX Add your own getattr code here */ 6 | return Py_FindMethod($abbrev$_methods, (PyObject *)self, name); 7 | } 8 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-mac/Carbon/__init__.py: -------------------------------------------------------------------------------- 1 | # Filter out warnings about signed/unsigned constants 2 | import warnings 3 | warnings.filterwarnings("ignore", "", FutureWarning, ".*Controls") 4 | warnings.filterwarnings("ignore", "", FutureWarning, ".*MacTextEditor") 5 | -------------------------------------------------------------------------------- /slp-250/Lib/test/crashers/infinite_rec_2.py: -------------------------------------------------------------------------------- 1 | 2 | # http://python.org/sf/1202533 3 | 4 | class A(str): 5 | __get__ = getattr 6 | 7 | if __name__ == '__main__': 8 | a = A('a') 9 | A.a = a 10 | a.a # segfault: infinite recursion in C 11 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-irix5/GLWS.py: -------------------------------------------------------------------------------- 1 | NOERROR = 0 2 | NOCONTEXT = -1 3 | NODISPLAY = -2 4 | NOWINDOW = -3 5 | NOGRAPHICS = -4 6 | NOTTOP = -5 7 | NOVISUAL = -6 8 | BUFSIZE = -7 9 | BADWINDOW = -8 10 | ALREADYBOUND = -100 11 | BINDFAILED = -101 12 | SETFAILED = -102 13 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-irix6/GLWS.py: -------------------------------------------------------------------------------- 1 | NOERROR = 0 2 | NOCONTEXT = -1 3 | NODISPLAY = -2 4 | NOWINDOW = -3 5 | NOGRAPHICS = -4 6 | NOTTOP = -5 7 | NOVISUAL = -6 8 | BUFSIZE = -7 9 | BADWINDOW = -8 10 | ALREADYBOUND = -100 11 | BINDFAILED = -101 12 | SETFAILED = -102 13 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-unixware7/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | case `uname -sr` in 3 | UnixWare*) ;; 4 | *) echo Probably not on a UnixWare system 1>&2 5 | exit 1;; 6 | esac 7 | set -v 8 | h2py -i '(u_long)' /usr/include/netinet/in.h 9 | h2py /usr/include/sys/stropts.h 10 | -------------------------------------------------------------------------------- /slp-250/Lib/test/crashers/infinite_rec_5.py: -------------------------------------------------------------------------------- 1 | 2 | # http://python.org/sf/1267884 3 | 4 | import types 5 | 6 | class C: 7 | __str__ = types.InstanceType.__str__ 8 | 9 | if __name__ == '__main__': 10 | str(C()) # segfault: infinite recursion in C 11 | -------------------------------------------------------------------------------- /slp-250/PC/os2vacpp/_tkinter.def: -------------------------------------------------------------------------------- 1 | LIBRARY _TKINTER INITINSTANCE TERMINSTANCE 2 | DESCRIPTION 'Python Extension DLL v1.0 for Access to Tcl/Tk Environment' 3 | PROTMODE 4 | DATA MULTIPLE NONSHARED 5 | 6 | EXPORTS 7 | init_tkinter 8 | 9 | -------------------------------------------------------------------------------- /slp-250/PC/python.mk: -------------------------------------------------------------------------------- 1 | project : n:\python\python-1.5.1\pc\wat_os2\pyth_os2.exe n:\python\python-1.& 2 | 5.1\pc\wat_dos\pyth_dos.exe .SYMBOLIC 3 | 4 | !include n:\python\python-1.5.1\pc\wat_os2\pyth_os2.mk1 5 | !include n:\python\python-1.5.1\pc\wat_dos\pyth_dos.mk1 6 | -------------------------------------------------------------------------------- /slp-250/Mac/Modules/evt/evtedit.py: -------------------------------------------------------------------------------- 1 | f = Function(void, 'SystemClick', 2 | (EventRecord_ptr, 'theEvent', InMode), 3 | (WindowPtr, 'theWindow', InMode), 4 | ) 5 | functions.append(f) 6 | 7 | f = Function(UInt32, 'TickCount', 8 | ) 9 | functions.append(f) 10 | -------------------------------------------------------------------------------- /slp-250/Tools/scripts/pydocgui.pyw: -------------------------------------------------------------------------------- 1 | # Note: this file must not be named pydoc.pyw, lest it just end up 2 | # importing itself (Python began allowing import of .pyw files 3 | # between 2.2a1 and 2.2a2). 4 | import pydoc 5 | 6 | if __name__ == '__main__': 7 | pydoc.gui() 8 | -------------------------------------------------------------------------------- /slp-250/Lib/test/badsyntax_future5.py: -------------------------------------------------------------------------------- 1 | """This is a test""" 2 | from __future__ import nested_scopes 3 | import foo 4 | from __future__ import nested_scopes 5 | 6 | 7 | def f(x): 8 | def g(y): 9 | return x + y 10 | return g 11 | 12 | result = f(2)(4) 13 | -------------------------------------------------------------------------------- /slp-250/PC/icons.mak: -------------------------------------------------------------------------------- 1 | python_icon.exe: py.res empty.obj 2 | link /out:python_icon.exe /machine:x86 /subsystem:windows py.res empty.obj 3 | 4 | py.res: py.ico pyc.ico pycon.ico icons.rc 5 | rc /fo py.res icons.rc 6 | 7 | empty.obj: empty.c 8 | cl /c empty.c 9 | 10 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/delphi/ZLibConst.pas: -------------------------------------------------------------------------------- 1 | unit ZLibConst; 2 | 3 | interface 4 | 5 | resourcestring 6 | sTargetBufferTooSmall = 'ZLib error: target buffer may be too small'; 7 | sInvalidStreamOp = 'Invalid stream operation'; 8 | 9 | implementation 10 | 11 | end. 12 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/testzlib/testzlib.txt: -------------------------------------------------------------------------------- 1 | To build testzLib with Visual Studio 2005: 2 | 3 | copy to a directory file from : 4 | - root of zLib tree 5 | - contrib/testzlib 6 | - contrib/masmx86 7 | - contrib/masmx64 8 | - contrib/vstudio/vc7 9 | 10 | and open testzlib8.sln -------------------------------------------------------------------------------- /slp-250/Python/dynload_stub.c: -------------------------------------------------------------------------------- 1 | 2 | /* This module provides the necessary stubs for when dynamic loading is 3 | not present. */ 4 | 5 | #include "Python.h" 6 | #include "importdl.h" 7 | 8 | 9 | const struct filedescr _PyImport_DynLoadFiletab[] = { 10 | {0, 0} 11 | }; 12 | -------------------------------------------------------------------------------- /slp-250/Lib/test/badsyntax_future7.py: -------------------------------------------------------------------------------- 1 | """This is a test""" 2 | 3 | from __future__ import nested_scopes; import string; from __future__ import \ 4 | nested_scopes 5 | 6 | def f(x): 7 | def g(y): 8 | return x + y 9 | return g 10 | 11 | result = f(2)(4) 12 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/archiving.tex: -------------------------------------------------------------------------------- 1 | \chapter{Data Compression and Archiving} 2 | \label{archiving} 3 | 4 | The modules described in this chapter support data compression 5 | with the zlib, gzip, and bzip2 algorithms, and 6 | the creation of ZIP- and tar-format archives. 7 | 8 | \localmoduletable 9 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/sqlite3/execute_1.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | 3 | con = sqlite3.connect("mydb") 4 | 5 | cur = con.cursor() 6 | 7 | who = "Yeltsin" 8 | age = 72 9 | 10 | cur.execute("select name_last, age from people where name_last=? and age=?", (who, age)) 11 | print cur.fetchone() 12 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-irix5/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | case `uname -sr` in 3 | 'IRIX '[45].*) ;; 4 | *) echo Probably not on an IRIX system 1>&2 5 | exit 1;; 6 | esac 7 | set -v 8 | h2py /usr/include/sys/file.h 9 | h2py -i '(u_long)' /usr/include/netinet/in.h 10 | h2py /usr/include/errno.h 11 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_tp_setattr: -------------------------------------------------------------------------------- 1 | 2 | static int 3 | $abbrev$_setattr($abbrev$object *self, char *name, PyObject *v) 4 | { 5 | /* Set attribute 'name' to value 'v'. v==NULL means delete */ 6 | 7 | /* XXXX Add your own setattr code here */ 8 | return -1; 9 | } 10 | -------------------------------------------------------------------------------- /slp-250/Lib/test/crashers/infinite_rec_1.py: -------------------------------------------------------------------------------- 1 | 2 | # http://python.org/sf/1202533 3 | 4 | import new, operator 5 | 6 | class A: 7 | pass 8 | A.__mul__ = new.instancemethod(operator.mul, None, A) 9 | 10 | if __name__ == '__main__': 11 | A()*2 # segfault: infinite recursion in C 12 | -------------------------------------------------------------------------------- /slp-250/Demo/tkinter/guido/imageview.py: -------------------------------------------------------------------------------- 1 | from Tkinter import * 2 | import sys 3 | 4 | def main(): 5 | filename = sys.argv[1] 6 | root = Tk() 7 | img = PhotoImage(file=filename) 8 | label = Label(root, image=img) 9 | label.pack() 10 | root.mainloop() 11 | 12 | main() 13 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/libpython.tex: -------------------------------------------------------------------------------- 1 | \chapter{Python Runtime Services 2 | \label{python}} 3 | 4 | The modules described in this chapter provide a wide range of services 5 | related to the Python interpreter and its interaction with its 6 | environment. Here's an overview: 7 | 8 | \localmoduletable 9 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/sqlite3/execute_3.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | 3 | con = sqlite3.connect("mydb") 4 | 5 | cur = con.cursor() 6 | 7 | who = "Yeltsin" 8 | age = 72 9 | 10 | cur.execute("select name_last, age from people where name_last=:who and age=:age", 11 | locals()) 12 | print cur.fetchone() 13 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/sqlite3/parse_colnames.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | import datetime 3 | 4 | con = sqlite3.connect(":memory:", detect_types=sqlite3.PARSE_COLNAMES) 5 | cur = con.cursor() 6 | cur.execute('select ? as "x [timestamp]"', (datetime.datetime.now(),)) 7 | dt = cur.fetchone()[0] 8 | print dt, type(dt) 9 | -------------------------------------------------------------------------------- /slp-250/Doc/texinputs/python.ist: -------------------------------------------------------------------------------- 1 | line_max 100 2 | headings_flag 1 3 | heading_prefix " \\bigletter " 4 | 5 | preamble "\\begin{theindex} 6 | \\def\\bigletter#1{{\\Large\\sffamily#1}\\nopagebreak\\vspace{1mm}} 7 | 8 | " 9 | 10 | symhead_positive "{Symbols}" 11 | numhead_positive "{Numbers}" 12 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/libunix.tex: -------------------------------------------------------------------------------- 1 | \chapter{Unix Specific Services} 2 | \label{unix} 3 | 4 | The modules described in this chapter provide interfaces to features 5 | that are unique to the \UNIX{} operating system, or in some cases to 6 | some or many variants of it. Here's an overview: 7 | 8 | \localmoduletable 9 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-sunos5/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | case `uname -sr` in 3 | 'SunOS 5.'*) ;; 4 | *) echo Probably not on a Solaris 2 system 1>&2 5 | exit 1;; 6 | esac 7 | set -v 8 | h2py -i '(u_long)' /usr/include/sys/types.h /usr/include/netinet/in.h /usr/include/sys/stropts.h /usr/include/dlfcn.h 9 | 10 | -------------------------------------------------------------------------------- /slp-250/Lib/test/test_crypt.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python 2 | """Simple test script for cryptmodule.c 3 | Roger E. Masse 4 | """ 5 | 6 | from test.test_support import verify, verbose 7 | import crypt 8 | 9 | c = crypt.crypt('mypassword', 'ab') 10 | if verbose: 11 | print 'Test encryption: ', c 12 | -------------------------------------------------------------------------------- /slp-250/PCbuild/db.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /slp-250/PCbuild8/db.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /wrap_libnds/Makefile.arm7: -------------------------------------------------------------------------------- 1 | CFLAGS += -DARM7 2 | 3 | PYTHON := python 4 | PYREXC := $(PYTHONDIR)/Scripts/pyrexc.py 5 | 6 | all: source/arm7/wrap_touch.o 7 | 8 | source/arm7/wrap_touch.c: include/nds/arm7/wrap_touch.pyx 9 | $(PYTHON) $(PYREXC) include/nds/arm7/wrap_touch.pyx -o source/arm7/wrap_touch.c -------------------------------------------------------------------------------- /NDSPython/nitrofiles/YYY.PY: -------------------------------------------------------------------------------- 1 | def f(): 2 | import sys 3 | print "Cleared importer cache.." 4 | if sys.path_importer_cache.has_key("cf0:/python/lib/python24.zip"): 5 | del sys.path_importer_cache["cf0:/python/lib/python24.zip"] 6 | try: 7 | import site 8 | except SyntaxError: 9 | pass 10 | -------------------------------------------------------------------------------- /slp-250/Include/ast.h: -------------------------------------------------------------------------------- 1 | #ifndef Py_AST_H 2 | #define Py_AST_H 3 | #ifdef __cplusplus 4 | extern "C" { 5 | #endif 6 | 7 | PyAPI_FUNC(mod_ty) PyAST_FromNode(const node *, PyCompilerFlags *flags, 8 | const char *, PyArena *); 9 | 10 | #ifdef __cplusplus 11 | } 12 | #endif 13 | #endif /* !Py_AST_H */ 14 | -------------------------------------------------------------------------------- /slp-250/Lib/test/test_future1.py: -------------------------------------------------------------------------------- 1 | """This is a test""" 2 | 3 | # Import the name nested_scopes twice to trigger SF bug #407394 (regression). 4 | from __future__ import nested_scopes, nested_scopes 5 | 6 | def f(x): 7 | def g(y): 8 | return x + y 9 | return g 10 | 11 | result = f(2)(4) 12 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/sqlite3/md5func.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | import md5 3 | 4 | def md5sum(t): 5 | return md5.md5(t).hexdigest() 6 | 7 | con = sqlite3.connect(":memory:") 8 | con.create_function("md5", 1, md5sum) 9 | cur = con.cursor() 10 | cur.execute("select md5(?)", ("foo",)) 11 | print cur.fetchone()[0] 12 | -------------------------------------------------------------------------------- /slp-250/Lib/plat-irix6/regen: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | case `uname -sr` in 3 | 'IRIX '[456].*) ;; 4 | 'IRIX64 '[456].*) ;; 5 | *) echo Probably not on an IRIX system 1>&2 6 | exit 1;; 7 | esac 8 | set -v 9 | h2py /usr/include/sys/file.h 10 | h2py -i '(u_long)' /usr/include/netinet/in.h 11 | h2py /usr/include/errno.h 12 | -------------------------------------------------------------------------------- /slp-250/Mac/PythonLauncher/doscript.h: -------------------------------------------------------------------------------- 1 | /* 2 | * doscript.h 3 | * PythonLauncher 4 | * 5 | * Created by Jack Jansen on Wed Jul 31 2002. 6 | * Copyright (c) 2002 __MyCompanyName__. All rights reserved. 7 | * 8 | */ 9 | 10 | #include 11 | 12 | extern int doscript(const char *command); -------------------------------------------------------------------------------- /slp-250/Tools/framer/framer/__init__.py: -------------------------------------------------------------------------------- 1 | """A tool to generate basic framework for C extension types. 2 | 3 | The basic ideas is the same as modulator, but the code generates code 4 | using many of the new features introduced in Python 2.2. It also 5 | takes a more declarative approach to generating code. 6 | """ 7 | -------------------------------------------------------------------------------- /slp-250/Demo/sockets/unixclient.py: -------------------------------------------------------------------------------- 1 | # Echo client demo using Unix sockets 2 | # Piet van Oostrum 3 | 4 | from socket import * 5 | 6 | FILE = 'unix-socket' 7 | s = socket(AF_UNIX, SOCK_STREAM) 8 | s.connect(FILE) 9 | s.send('Hello, world') 10 | data = s.recv(1024) 11 | s.close() 12 | print 'Received', repr(data) 13 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/modules.tex: -------------------------------------------------------------------------------- 1 | \chapter{Importing Modules} 2 | \label{modules} 3 | 4 | The modules described in this chapter provide new ways to import other 5 | Python modules and hooks for customizing the import process. 6 | 7 | The full list of modules described in this chapter is: 8 | 9 | \localmoduletable 10 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/sqlite3/execute_2.py: -------------------------------------------------------------------------------- 1 | import sqlite3 2 | 3 | con = sqlite3.connect("mydb") 4 | 5 | cur = con.cursor() 6 | 7 | who = "Yeltsin" 8 | age = 72 9 | 10 | cur.execute("select name_last, age from people where name_last=:who and age=:age", 11 | {"who": who, "age": age}) 12 | print cur.fetchone() 13 | -------------------------------------------------------------------------------- /slp-250/Demo/sockets/unicast.py: -------------------------------------------------------------------------------- 1 | # Send UDP broadcast packets 2 | 3 | MYPORT = 50000 4 | 5 | import sys, time 6 | from socket import * 7 | 8 | s = socket(AF_INET, SOCK_DGRAM) 9 | s.bind(('', 0)) 10 | 11 | while 1: 12 | data = repr(time.time()) + '\n' 13 | s.sendto(data, ('', MYPORT)) 14 | time.sleep(2) 15 | -------------------------------------------------------------------------------- /slp-250/Doc/perl/howto.perl: -------------------------------------------------------------------------------- 1 | # -*- perl -*- 2 | # 3 | # This implements the Python howto class. All it really needs to do it 4 | # load the "python" style. 5 | 6 | package main; 7 | 8 | do_require_package("article"); 9 | do_require_package("alltt"); 10 | do_require_package("python"); 11 | 12 | 1; # sheesh.... 13 | -------------------------------------------------------------------------------- /slp-250/Stackless/platf/switch_arm_thumb_gcc.h: -------------------------------------------------------------------------------- 1 | 2 | #define STACK_REFPLUS 1 3 | #define STACK_MAGIC 0 4 | 5 | /* Use the generic support for an external assembly language slp_switch function. */ 6 | #define EXTERNAL_ASM 7 | 8 | #ifdef SLP_EVAL 9 | /* This always uses the external masm assembly file. */ 10 | #endif 11 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_method: -------------------------------------------------------------------------------- 1 | 2 | static char $abbrev$_$method$__doc__[] = 3 | "" 4 | ; 5 | 6 | static PyObject * 7 | $abbrev$_$method$($abbrev$object *self, PyObject *args) 8 | { 9 | if (!PyArg_ParseTuple(args, "")) 10 | return NULL; 11 | Py_INCREF(Py_None); 12 | return Py_None; 13 | } 14 | 15 | -------------------------------------------------------------------------------- /slp-250/Tools/modulator/Templates/object_new: -------------------------------------------------------------------------------- 1 | 2 | static $abbrev$object * 3 | new$abbrev$object() 4 | { 5 | $abbrev$object *self; 6 | 7 | self = PyObject_NEW($abbrev$object, &$Abbrev$type); 8 | if (self == NULL) 9 | return NULL; 10 | /* XXXX Add your own initializers here */ 11 | return self; 12 | } 13 | 14 | -------------------------------------------------------------------------------- /slp-250/Doc/lib/libmm.tex: -------------------------------------------------------------------------------- 1 | \chapter{Multimedia Services} 2 | \label{mmedia} 3 | 4 | The modules described in this chapter implement various algorithms or 5 | interfaces that are mainly useful for multimedia applications. They 6 | are available at the discretion of the installation. Here's an overview: 7 | 8 | \localmoduletable 9 | -------------------------------------------------------------------------------- /zlib-1.2.3/contrib/untgz/Makefile: -------------------------------------------------------------------------------- 1 | CC=cc 2 | CFLAGS=-g 3 | 4 | untgz: untgz.o ../../libz.a 5 | $(CC) $(CFLAGS) -o untgz untgz.o -L../.. -lz 6 | 7 | untgz.o: untgz.c ../../zlib.h 8 | $(CC) $(CFLAGS) -c -I../.. untgz.c 9 | 10 | ../../libz.a: 11 | cd ../..; ./configure; make 12 | 13 | clean: 14 | rm -f untgz untgz.o *~ 15 | -------------------------------------------------------------------------------- /slp-250/Demo/tix/bitmaps/bold.xbm: -------------------------------------------------------------------------------- 1 | #define bold_width 16 2 | #define bold_height 16 3 | static unsigned char bold_bits[] = { 4 | 0x00, 0x00, 0x00, 0x00, 0xfc, 0x07, 0xfc, 0x0f, 0x18, 0x1c, 0x18, 0x18, 5 | 0x18, 0x18, 0x18, 0x1c, 0xf8, 0x0f, 0xf8, 0x0f, 0x18, 0x18, 0x18, 0x30, 6 | 0x18, 0x30, 0x18, 0x38, 0xfc, 0x3f, 0xfc, 0x1f}; 7 | -------------------------------------------------------------------------------- /slp-250/Doc/ext/setup.py: -------------------------------------------------------------------------------- 1 | from distutils.core import setup, Extension 2 | setup(name="noddy", version="1.0", 3 | ext_modules=[ 4 | Extension("noddy", ["noddy.c"]), 5 | Extension("noddy2", ["noddy2.c"]), 6 | Extension("noddy3", ["noddy3.c"]), 7 | Extension("noddy4", ["noddy4.c"]), 8 | ]) 9 | --------------------------------------------------------------------------------